如何使用 Disqus JS api?
how to use Disqus JS api?
我通过“https://disqus.com/api/3.0/posts/list.json”的 api 得到了像“342956146212”这样的 post id
。
成功了
我尝试按如下方式更新 post。
var forum = "portoxxxx";
var APIKEY = "r1GglbTmZuZLWl6xxxxxxyIBRtJNZf7SL";
jQuery.post('https://disqus.com/api/3.0/posts/update.json',{
forum:forum,
post:342956146212,
message:"This comment has been overwritten",
api_key:APIKEY}) });
但这是错误的。
请告诉我如何完成它,谢谢!
问题已解决
jQuery.post('https://disqus.com/api/3.0/posts/update.json',{
post:"2957858030",
access_token:ACCESS_TOKEN,
message:"This comment has been overwritten",
api_key:APIKEY})
forum
的前一个参数无效。
并且我添加了access_token
的新参数来解决授权问题
我通过“https://disqus.com/api/3.0/posts/list.json”的 api 得到了像“342956146212”这样的 post id
。
成功了
我尝试按如下方式更新 post。
var forum = "portoxxxx";
var APIKEY = "r1GglbTmZuZLWl6xxxxxxyIBRtJNZf7SL";
jQuery.post('https://disqus.com/api/3.0/posts/update.json',{
forum:forum,
post:342956146212,
message:"This comment has been overwritten",
api_key:APIKEY}) });
但这是错误的。
请告诉我如何完成它,谢谢!
问题已解决
jQuery.post('https://disqus.com/api/3.0/posts/update.json',{
post:"2957858030",
access_token:ACCESS_TOKEN,
message:"This comment has been overwritten",
api_key:APIKEY})
forum
的前一个参数无效。
并且我添加了access_token
的新参数来解决授权问题