我正在使用twitter4j
库在我的应用中整合Twitter发布。我关注this。但我在回电中遇到了问题。授权后它实际上并没有到我们的应用程序,但实际上它打开了我们在浏览器中指定的回调活动。我不确定为什么会这样。
我试图搜索但找不到与此相关的任何内容。所以可能是人们没有注意到或者我在整合它时错过了一些东西。
无论哪种方式,请帮我解决这个问题。
答案 0 :(得分:1)
它打开了浏览器内部的自定义网址链接,因为您还没有定义哪个活动应该处理自定义链接,或者您还没有定义正确的类别。这是一个例子。确保包含类别。 android.intent.category.BROWSABLE
将确保浏览器打开您的应用。
private final String CALLBACKURL = "x-oauthflow-twitter://privlyT4JCallback";
<activity
android:name=".TwitterLinkGrabberService"
android:configChanges="keyboardHidden|orientation|screenSize"
android:launchMode="singleInstance" >
<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="privlyT4JCallback"
android:scheme="x-oauthflow-twitter" />
</intent-filter>
</activity>
答案 1 :(得分:0)
您已经安装了具有相同回调功能的应用,您必须从清单和更改回调字符串 从activity.try回调常量以使用唯一的回叫地址。
<data android:scheme="login-twitter" android:host="callback1" />
和
static final String TWITTER_CALLBACK_URL = "login-twitter://callback1";