要在你的管子上上传视频,我正在使用 Gdata 示例代码。
它的工作正常。但是在我的应用程序中,我需要在用户尝试上传视频之前验证用户的用户名和密码。
我可以使用 Gdata 服务吗?
谢谢你的帮助。
要在你的管子上上传视频,我正在使用 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;
}
}