用于在 Android 上使用 Twitter4j、OAuth 检索用户时间线的小部件
我看到了有关如何注册应用程序、获取 pin/uid 和检索访问令牌并在 OnNewIntent 方法中使用它的示例代码和演练。
如何对小部件而不是应用程序进行 OAuth 身份验证?
I see the sample codes and walkthroughs on how to register your application, get the pin/uid and retrieve the access token and use it in the OnNewIntent method.
How can I do this OAuth authentication for a widget instead of an application?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要启动一个 Activity 并从那里启动 Oauth 流程。
您可以使用 setOnClickPendingIntent 在用户单击小部件的一部分时启动活动,或者使用配置活动让用户在小部件放置在主屏幕上时进行身份验证。
You need to start an Activity and start the Oauth flow from there.
You can use setOnClickPendingIntent to start an Activity if the user clicks on a part of the Widget, or use a Configuration Activity to have the user authenticate himself the moment the widget is placed on the homescreen.