简体   繁体   English

打电话给G +意图办理登机手续吗?

[英]Calling G+ intent to check in?

I would like to put a 'check in' option in my app, which would uses at least Facebook and Google+, and now I have a problem - how to call their intents to do that? 我想在我的应用程序中放置一个“签到”选项,该选项将至少使用Facebook和Google+,现在我遇到了一个问题-如何表达他们的意图?

For FB I found that: 对于FB,我发现:

String uri = "fb://places";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);

Where URI comes from that post: launch facebook app from other app URI来自该帖子: 从其他应用程序启动Facebook应用程序

But I have no idea for Google+, I looked into documentation (which is poor) and found nothing. 但是我不了解Google+,我查看了文档(很差),却一无所获。

Currently, it is not possible to write to a user's Stream in any form, including for a check-in. 当前,无法以任何形式写入用户的Stream,包括用于签入。 However, you can and should make these feature requests in our Issue Tracker, which you can find at https://developers.google.com/+/support . 但是,您可以并且应该在我们的问题跟踪器中提出这些功能请求,可以在https://developers.google.com/+/support上找到。 Also, it may be worth checking out the Developer Preview for Google+ History, which allows writing "moments." 另外,可能值得查看Google+历史记录的开发人员预览版,该预览版可以编写“要点”。 However, keep in mind that this is a developer preview, and not something you can currently build an app upon. 但是,请记住,这是开发人员预览,而不是您当前可以在其上构建应用程序的内容。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM