YouTube チャンネルに登録するボタンを iPhone アプリケーションに追加するにはどうすればよいですか?
私は使用してみました:
-(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 page not found エラーが発生します。
助言がありますか?
ありがとう