소스 검색

possibly fixed
debug output left

Herbert Vojčík 14 년 전
부모
커밋
7389dcc7a7
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lib-app/facebook-oauth.js

+ 1 - 1
lib-app/facebook-oauth.js

@@ -13,7 +13,7 @@ fb.OAuthInterface = function () {
 fb.OAuthInterface.prototype.restApi = function (method, args) {
 //  return wget("https://api.facebook.com/"+method+this.tokenString(), args);
   print("https://api.facebook.com/method/"+method, this.withToken(args));
-  print(wget("https://api.facebook.com/"+method, this.withToken(args), {complete:true}));
+  print(wget("https://api.facebook.com/method/"+method, this.withToken(args), {complete:true}));
   response.stop();
 };