iPhone 应用程序中的 YouTube 订阅按钮

发布于 2024-10-26 02:29:28 字数 426 浏览 2 评论 0原文

如何向 iPhone 应用程序添加一个订阅 YouTube 频道的按钮?

我尝试使用:

-(void)subscribe:(id)sender
    {
        NSString* str = [NSString stringWithFormat:@"%@%@",@"http://www.youtube.com/subscription_center?add_user=",YouTubeUserName];
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
    }

但这显示了一个 Youtube 屏幕,其中有一个登录/登录按钮。当按登录时,会导致 404 页面未找到错误。

有什么建议吗?

谢谢

How do I add to an iPhone application, a button that will subscribe to a YouTube channel?

I tried using:

-(void)subscribe:(id)sender
    {
        NSString* str = [NSString stringWithFormat:@"%@%@",@"http://www.youtube.com/subscription_center?add_user=",YouTubeUserName];
        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:str]];
    }

but this shows a Youtube screen, where I have a login/sign in button. When pressing login it leads to a 404 page not found error.

Any suggestions?

Thanks

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

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

发布评论

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

评论(1

疯狂的代价 2024-11-02 02:29:28

我建议使用 Youtube 的 API 来完成此操作。它更复杂,因为您需要事先对用户进行身份验证,但这是完成此任务的更彻底和无缝的方法。

I would recommend using Youtube's API to get this done. It's more complicated since you will need to authenticate the user beforehand but is a more thorough and seamless approach for getting this done.

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