gpt4 book ai didi

javascript - 领英 API : how can I use a value stored in a variable to post network update

转载 作者:行者123 更新时间:2023-11-30 06:04:24 25 4
gpt4 key购买 nike

我有一个字符串变量...我希望存储在这个变量中的值作为网络更新发布在 LinkedIn 中......

有人可以指导我如何修改下面的代码以实现此功能..

updateURL = "/people/~/person-activities"
IN.API.Raw(updateURL)
.method("POST")
.body('{"contentType":"linkedin-html","body":"my nw update"}')
.result(function(result) {
alert ("Updated");
})
.error( function(error) { console.log(error); })

现在它发布“我的新更新”。

最佳答案

JSON.Stringify 所有你需要放在这里的 linkedin api支持json,所以你只需要将你的变量转换成json字符串。

IN.API.Raw("/people/~/current-status") // Update (PUT) the status
.method("PUT")
.body(JSON.stringify(urvariablehere))
.result( function(result) { document.getElementById("statusDiv").innerHTML = "Status updated"; } )
.error( function(error) { /* do nothing */ } );

关于javascript - 领英 API : how can I use a value stored in a variable to post network update,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6066196/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com