如何从另一个移动应用程序链接到 Twitter、Facebook 和 YouTube 应用程序?

发布于 2025-01-02 01:49:02 字数 449 浏览 1 评论 0原文

我知道我见过其他应用程序这样做(至少在 iOS 上),但我不确定如何做到这一点。

有没有什么方法(可能是协议或 URL 方案)从另一个应用程序中打开 Twitter、Facebook 和 YouTube 应用程序?

我正在构建一个phonegap应用程序并为iOS、Android和BlackBerry(最终也包括Windows Mobile,但那是在路上)发布。我认为必须首先在设备上安装相应的应用程序才能使其首先工作。

我有一个客户真的希望将此功能添加到他的应用程序中,但我似乎找不到如何完成它。

我注意到这一点: http://wiki.akosma.com/IPhone_URL_Schemes 甚至在测试应用程序上尝试过没有运气。

任何帮助将不胜感激。

I know I've seen other apps do this (at least on iOS), but I'm not sure how it can be done.

Is there any way (a protocol or url scheme perhaps) to open the Twitter, Facebook, and YouTube apps from within another app?

I'm building a phonegap app and publishing for iOS, Android, and BlackBerry (eventually Windows Mobile as well, but that's down the road). I assume the respective apps would have to be installed on the device first in order for it to work in the first place.

I have a client who really wants this feature added to his app, but I just can't seem to find how it can be done.

I noticed this: http://wiki.akosma.com/IPhone_URL_Schemes and even tried it on a test app with no luck.

Any help would be appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

唱一曲作罢 2025-01-09 01:49:02

这个答案是 Android 特定的,但如果你想使用 Twitter,请查看本教程:

http:// www.mobiledevelopersolutions.com/home/start/twominutetutorials/tmt5p1

对于 YouTube,您可以使用我的 VideoPlayer 插件,它现在可以处理 YouTube 视频:

http://simonmacdonald.blogspot.com/2011/11/video -player-plugin-for-phonegap.html

最后 Dave Johnson 也做了一些 Facebook 集成:

https://github.com/davejohnson/phonegap-plugin-facebook-connect

This answer is Android specific but if you want to do Twitter look at this tutorial:

http://www.mobiledevelopersolutions.com/home/start/twominutetutorials/tmt5p1

For YouTube you can use my VideoPlayer plugin which can now handle YouTube video's:

http://simonmacdonald.blogspot.com/2011/11/video-player-plugin-for-phonegap.html

and finally Dave Johnson did some Facebook integration as well:

https://github.com/davejohnson/phonegap-plugin-facebook-connect

素染倾城色 2025-01-09 01:49:02

fb:需要注册系统端。一些应用程序或一些网址(例如maps.google.com)就是这种情况。没有通用的方法可以从链接、应用程序或移动网络加载应用程序。

fb: needs to be registered system side. That's the case for a few apps or for a few URLs (maps.google.com for example). There is no generic way to load an app from a link, from an app or mobile web.

獨角戲 2025-01-09 01:49:02

例如,在 iOS 上,您可以通过以下方式打开 facebook

-(IBAction) openFB{
    NSURL *url = [NSURL URLWithString:@"fb://friends"];
    [[UIApplication sharedApplication] openURL:url];
}

但请确保您安装了 facebook 应用程序,您也可以通过尝试在 Safari 中打开 fb://friends 来测试它,它会将您带到 Facebook

For example on iOS you can open facebook by

-(IBAction) openFB{
    NSURL *url = [NSURL URLWithString:@"fb://friends"];
    [[UIApplication sharedApplication] openURL:url];
}

But make sure you have facebook app installed, you can also test it by trying to open fb://friends in Safari, and it will take you to Facebook

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文