|
@@ -19,6 +19,7 @@ fb.OAuthInterface.prototype.graphApiGet = function (path, args) {
|
|
fb.OAuthInterface.prototype.graphApiPost = function (path, args) {
|
|
fb.OAuthInterface.prototype.graphApiPost = function (path, args) {
|
|
print(request);
|
|
print(request);
|
|
print("https://graph.facebook.com/"+path+this.tokenString(), args);
|
|
print("https://graph.facebook.com/"+path+this.tokenString(), args);
|
|
|
|
+ print(wpost("https://graph.facebook.com/"+path+this.tokenString(), args, {complete:true}));
|
|
response.stop();
|
|
response.stop();
|
|
};
|
|
};
|
|
|
|
|
|
@@ -32,7 +33,7 @@ fb.free.obtainToken = function () {};
|
|
|
|
|
|
fb.offline = new fb.OAuthInterface;
|
|
fb.offline = new fb.OAuthInterface;
|
|
fb.offline.obtainToken = function () {
|
|
fb.offline.obtainToken = function () {
|
|
- var obtained = fb.free.graphApiPost("access_token", {
|
|
|
|
|
|
+ var obtained = fb.free.graphApiPost("oauth/access_token", {
|
|
grant_type: "client_credentials",
|
|
grant_type: "client_credentials",
|
|
client_id: storage.facebooklib.appId,
|
|
client_id: storage.facebooklib.appId,
|
|
client_secret: storage.facebooklib.secret
|
|
client_secret: storage.facebooklib.secret
|
|
@@ -42,7 +43,7 @@ fb.offline.obtainToken = function () {
|
|
|
|
|
|
fb.online = new fb.OAuthInterface;
|
|
fb.online = new fb.OAuthInterface;
|
|
fb.online.obtainToken = function () {
|
|
fb.online.obtainToken = function () {
|
|
- var obtained = eval("("+fb.free.graphApiPost("exchange_sessions", {
|
|
|
|
|
|
+ var obtained = eval("("+fb.free.graphApiPost("oauth/exchange_sessions", {
|
|
sessions: fb.sessionKey,
|
|
sessions: fb.sessionKey,
|
|
client_id: storage.facebooklib.appId,
|
|
client_id: storage.facebooklib.appId,
|
|
client_secret: storage.facebooklib.secret
|
|
client_secret: storage.facebooklib.secret
|