iPhone 应用程序中的 YouTube 订阅按钮
如何向 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 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.