You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 20, 2023. It is now read-only.
Unable to achieve the disqus api using easyXDM.
var xhr = new easyXDM.Rpc({
remote: "https://disqus.com/api/3.0/"
}, {
remote: {
request: {} // request is exposed by /cors/
}
});
xhr.request({
url: "threads/create.json",
method: "POST",
data: {
title : 'OutletsThread',
forum : 'smartForum',
message : 'Buzz ur interest',
access_token : disqusAPI.accessToken
}
}, function(response) { //res, code
alert(response.status);
alert(response.data);
});
The text was updated successfully, but these errors were encountered: