在一个请求中获取读取和发布权限

时间:2013-02-28 19:23:57

标签: android facebook facebook-android-sdk android-facebook

在你们都说不可能之前,打开Spotify应用程序并点击Facebook按钮登录。

我想知道他们是如何做到的,以及我如何在一个请求中获得“publish_stream”和基本权限/电子邮件。

此外,如果我上次会话中的某些信息(他们上次使用该应用程序时),我是否可以使用Facebook SDK重新开启Facebook会话?

编辑 -SCREENSHOTS以下为音乐AVERT

Spotify magic

5 个答案:

答案 0 :(得分:20)

你在Spotify上看到的不是publish_stream的结果。他们使用的是Open Graph

开放图形概念涉及将应用程序的操作与FB活动帖子集成,并通过他们使用的应用程序与用户共享。在上面提到的链接上阅读更多相关信息。


修改 解释 Check the Open Graph Permissions

示例活动:

public class MainActivity extends Activity implements StatusCallback {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        OpenRequest open = new OpenRequest(this);
        open.setLoginBehavior(SessionLoginBehavior.SUPPRESS_SSO);
        open.setPermissions(Arrays.asList(new String[]{"email", "publish_actions", "user_birthday", "user_hometown"}));
        open.setCallback(this);
        Session s = new Session(this);
        s.openForPublish(open);
    }

    @Override
    public void call(Session session, SessionState state, Exception exception) {
    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if(Session.getActiveSession()!=null)
            Session.getActiveSession().onActivityResult(this, requestCode, resultCode, data);
    }
}

此活动将显示此信息(如果用户未登录):

enter image description here

答案 1 :(得分:1)

在我的应用程序中,我为OpenRequest创建了一个实例,并为其设置了权限。

Session currentSession = Session.getActiveSession();
if (currentSession == null || currentSession.getState().isClosed()) 
{
    Session session = new Session.Builder(context).build();
    Session.setActiveSession(session);
    currentSession = session;
}

if (currentSession.isOpened()) 
{
    //Do whatever u want. User has logged in
}
else if(!currentSession.isOpened())
{
    //Ask for username and password
    OpenRequest op = new Session.OpenRequest(context);

    op.setLoginBehavior(SessionLoginBehavior.SUPPRESS_SSO);
    op.setCallback(null);

    List<String> permissions = new ArrayList<String>();
    permissions.add("publish_stream");
    op.setPermissions(permissions);

    Session session = new Builder(InvitePartners.this).build();
    Session.setActiveSession(session);
    session.openForPublish(op);
}

它可能对您有用。

答案 2 :(得分:1)

我只是在onCreate方法中单独设置它。

    LoginButton authButton = (LoginButton) view.findViewById(R.id.authButton);
    authButton.setPublishPermissions("publish_actions");
    authButton.setFragment(this);
    Session.NewPermissionsRequest newPermissionsRequest = new 
            Session.NewPermissionsRequest(this, Arrays.asList("read_stream"));
    Session.getActiveSession().requestNewReadPermissions(newPermissionsRequest);

答案 3 :(得分:0)

转到您的应用程序信息中心。然后单击编辑应用。现在在页面的左侧,您将看到Permission。点击它。一个新的页面将来临。找出User & Friend Permissions:框。在这里输入publish_actions。现在保存。

现在从您的Android应用程序,您只需登录一次即可将故事发布到Facebook。我的意思是,只需使用LoginButton登录,并尝试发布一些内容。它应该工作。

让我知道会发生什么。

答案 4 :(得分:0)

对于任何想知道我问题第二部分的人:

要使用Facebook SDK重新开启Facebook会话,请使用此代码

if(Session.openActiveSession(this) == null) { //Haven't logged in yet
    openSessionForRead(getString(R.string.app_id), Arrays.asList("email"));
}

Facebook缓存令牌。