如何在图api中使用facebook访问令牌作为字符串

时间:2016-11-23 20:21:32

标签: android facebook-android-sdk type-conversion facebook-access-token

其实我想在我的页面上发布作为一个页面而不是在Android应用程序中使用facebook sdk的用户,但问题是页面“AccessToken”,我从图形请求中检索到的是字符串,现在我不能在其他地方使用它图形请求。它说String不能转换为AccessToken。

这是我的代码。

  package com.mak.masimmak.pageshare;

        import android.support.v7.app.AppCompatActivity;
        import android.os.Bundle;
        import android.view.View;
        import android.widget.Button;
        import android.widget.Toast;

        import com.facebook.AccessToken;
        import com.facebook.GraphRequest;
        import com.facebook.GraphResponse;
        import com.facebook.HttpMethod;

        import org.json.JSONException;
        import org.json.JSONObject;


        public class sharePage extends AppCompatActivity {
         Button shareButton;
            public String PageId;
            String PageAccessToken;
            @Override
            protected void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                setContentView(R.layout.activity_share_page);

                shareButton = (Button) findViewById(R.id.shareButton);



                shareButton.setOnClickListener(new View.OnClickListener(){

                    @Override
                    public void onClick(View view) {

                        if(getIntent().getExtras() != null) {
                            Bundle extras = getIntent().getExtras();
                            PageId = extras.getString("PageId");

                            /* make the API call */
                            new GraphRequest(
                                    AccessToken.getCurrentAccessToken(),
                                    "/"+PageId+"?fields=access_token",
                                    null,
                                    HttpMethod.GET,
                                    new GraphRequest.Callback() {
                                        public void onCompleted(GraphResponse response) {
                                             /* handle the result */


                                            try {
                                            JSONObject data = response.getJSONObject();
                                             PageAccessToken = data.getString("access_token");

                                                PostOnPage();



                                            } catch (JSONException e) {
                                                Toast.makeText(sharePage.this, e.toString(), Toast.LENGTH_LONG).show();
                                            }


                                        }
                                    }
                            ).executeAsync();




                        }
                    }

                });
            }

            public void PostOnPage(){

                Bundle params = new Bundle();
                params.putString("message", "This is a test message");
        /* make the API call */
                new GraphRequest(
  /* Problem is here the PageAccessToken is in String How to use this string token here? */
                        (AccessToken) PageAccessToken,
                        "/"+PageId+"/feed",
                        params,
                        HttpMethod.POST,
                        new GraphRequest.Callback() {
                            public void onCompleted(GraphResponse response) {
                    /* handle the result */
                            }
                        }
                ).executeAsync();

            }
        }

我在谷歌搜索问题,我发现了一些东西..

public AccessToken(String accessToken, String applicationId, String userId, Collection permissions, Collection declinedPermissions, AccessTokenSource accessTokenSource, Date expirationTime, Date lastRefreshTime)

但我不知道如何使用它或在我的代码中实现它。

1 个答案:

答案 0 :(得分:5)

我找到了自己问题的解决方案。 您可以使用以下代码行将AccessToken从String格式转换为Facebook AccessToken格式。

AccessToken PageAT = new AccessToken(PageAccessToken, AccessToken.getCurrentAccessToken().getApplicationId(), AccessToken.getCurrentAccessToken().getUserId(), AccessToken.getCurrentAccessToken().getPermissions(), null, AccessTokenSource.FACEBOOK_APPLICATION_NATIVE, AccessToken.getCurrentAccessToken().getExpires(), null);

然后,这个PageAT将在你的新图形请求中正常工作..