you tube に vedio をアップロードするには、Gdata サンプル コードを使用しています。
そのままで正常に動作します。しかし、私のアプリケーションでは、ユーザーがビデオをアップロードしようとする前に、ユーザーのユーザー名とパスワードを認証する必要があります。
Gdataサービスでできますか?
助けてくれてありがとう。
you tube に vedio をアップロードするには、Gdata サンプル コードを使用しています。
そのままで正常に動作します。しかし、私のアプリケーションでは、ユーザーがビデオをアップロードしようとする前に、ユーザーのユーザー名とパスワードを認証する必要があります。
Gdataサービスでできますか?
助けてくれてありがとう。
以下は、Youtube でのクライアント ログインの方法です。
- (BOOL)login:(NSString *)strusername password:(NSString *)strpassword
{
NSMutableURLRequest *request = [NSMutableURLRequest
requestWithURL:[NSURL URLWithString:@"https://www.google.com/accounts/ClientLogin"]];
NSString *params = [[NSString alloc] initWithFormat:@"Email=%@&Passwd=%@&service=youtube&source=&continue=http://www.google.com/",username,password];
[request setHTTPMethod:@"POST"];
[request setHTTPBody:[params dataUsingEncoding:NSUTF8StringEncoding]];
[params release];
[request setValue:@"application/x-www-form-urlencoded" forHTTPHeaderField:@"Content-type"];
NSHTTPURLResponse *response;
NSError *error;
[request setTimeoutInterval:120];
NSData *replyData = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSString *replyString = [[[NSString alloc] initWithData:replyData encoding:NSUTF8StringEncoding] autorelease];
if([replyString rangeOfString:@"Auth="].location!=NSNotFound)
{
NSString *authToken=[[replyString componentsSeparatedByString:@"Auth="] objectAtIndex:1];
NSLog(@"Auth : %@",authToken);
return YES;
}
else
{
return NO;
}
}