如何在android中集成路径社交网络?

时间:2016-05-17 05:26:34

标签: android path

如何在Android应用程序中集成路径以及如何提供OAuth2重定向URL。 我在成功验证后回到我的应用程序时遇到问题,而浏览器上的Re-Direct Path API用于验证 请尽快回复,我将为此感恩。

https://path.com/developers/docs#status

这是我的验证码

<listener>
   <description>ServletContextListener</description>
   <listener-class>com.org.servlet.DB_Listener</listener-class>
</listener>

如何在“Path Social Network”上分享帖子,请给我正确的代码

1 个答案:

答案 0 :(得分:0)

希望您注册了自己的应用程序,并在成功登录后将 redirectUri 添加到您要重定向的位置。

使用相应的活动在您的清单中声明此intent-filter

<intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.DEFAULT" />
            <category android:name="android.intent.category.BROWSABLE" />

            <data
                android:host="t4jsample"
                android:scheme="oauth" />
        </intent-filter>

确保 redirectUri 和方案+主机。即oauth://t4jsample两个匹配。