Android:Facebook排行榜 - 分数API

时间:2015-06-27 12:07:54

标签: android facebook

我尝试为我的应用程序制作一个简单的朋友排行榜。

我在网站和developer.facebook stackoverflow上做了很多研究,但我无法实现排行榜。

我发现文档缺乏示例,对于开发人员来说,这并不容易。 在Stackoverflow上,我找到一个似乎感兴趣的PHP代码,但我不知道自己在php

这是我目前的位置:

public class classement extends Activity{
public Button classement = null;



Bundle params = new Bundle();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.classement);

    params.putString("score", "3444");

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


classement.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {


    new GraphRequest(
            AccessToken.getCurrentAccessToken(),
            "/me/scores",
            params,
            HttpMethod.POST,
            new GraphRequest.Callback() {
                public void onCompleted(GraphResponse response) {
                    /* handle the result */

                }
            }
        ).executeAsync();



        /* make the API call */
        new GraphRequest(
            AccessToken.getCurrentAccessToken(),
            "/me/scores",
            null,
            HttpMethod.GET,
            new GraphRequest.Callback() {
                public void onCompleted(GraphResponse response) {
                    /* handle the result */

                }
            }
        ).executeAsync();

}

});

}
}

我为我的英语道歉 谢谢你的回答

0 个答案:

没有答案