为什么我的 android facebook sdk 给出

发布于 2024-11-02 03:02:46 字数 1453 浏览 0 评论 0原文

我想在我的墙上发布一些东西。我正在使用此代码,由按钮的 OnClickListener 调用

public void postOnWall(String msg) {
        mFacebook.authorize(this,new String[] {"publish_stream", "read_stream", "offline_access"}, 
                new DialogListener() {
                        public void onError(DialogError e) {
                        }
                        public void onFacebookError(FacebookError e) {
                        }
                        public void onCancel() {
                        }
                        public void onComplete(Bundle values) { 
                        }
          }
        );

        Log.d("Tests", "Testing graph API wall post");
         try {
                Bundle parameters = new Bundle();
                parameters.putString("message", msg);
                parameters.putString("description", "test test test");
                String response = mFacebook.request("me/feed", parameters, 
                        "POST");
                Log.d("Tests", "got response: " + response);
                if (response == null || response.equals("") || 
                        response.equals("false")) {
                   Log.v("Error", "Blank response");
                }
         } catch(Exception e) {
             e.printStackTrace();
         }
    }

但是响应字符串读取

{"error":{"type":"OAuthException","message":"必须使用活动访问令牌来查询有关当前用户的信息."}}

此外,应该请求权限的对话框永远不会停留。它开始加载,但随后消失。

i am trying to publish something on my wall. i am using this code, called by OnClickListener of a Button

public void postOnWall(String msg) {
        mFacebook.authorize(this,new String[] {"publish_stream", "read_stream", "offline_access"}, 
                new DialogListener() {
                        public void onError(DialogError e) {
                        }
                        public void onFacebookError(FacebookError e) {
                        }
                        public void onCancel() {
                        }
                        public void onComplete(Bundle values) { 
                        }
          }
        );

        Log.d("Tests", "Testing graph API wall post");
         try {
                Bundle parameters = new Bundle();
                parameters.putString("message", msg);
                parameters.putString("description", "test test test");
                String response = mFacebook.request("me/feed", parameters, 
                        "POST");
                Log.d("Tests", "got response: " + response);
                if (response == null || response.equals("") || 
                        response.equals("false")) {
                   Log.v("Error", "Blank response");
                }
         } catch(Exception e) {
             e.printStackTrace();
         }
    }

The response string however reads

{"error":{"type":"OAuthException","message":"An active access token must be used to query information about the current user."}}

Also, the Dialog that should be requesting permissions never stays. it starts loading, but then dissapears.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风透绣罗衣 2024-11-09 03:02:46

您似乎没有正确验证用户身份。

我不确定您是否遗漏了这部分代码,或者您根本没有这样做,但我会看一下 随 API 提供的示例

It seems like you haven't properly authenticated the user.

I'm not sure if you just left out that part of your code or you're not doing it at all but I would take a look at the example provided with the API.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文