我有一个字符串变量...我希望存储在此变量中的值在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); })
现在它发布了“我的新更新”。
答案 0 :(得分:1)
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 */ } );