我可以使用web authentication sample登录Google。这是代码:
private async void Launch_Click(object sender, RoutedEventArgs e)
{
if(GoogleClientID.Text == "")
{
rootPage.NotifyUser("Please enter an Client ID.", NotifyType.StatusMessage);
}
else if(GoogleCallbackUrl.Text == "")
{
rootPage.NotifyUser("Please enter an Callback URL.", NotifyType.StatusMessage);
}
try
{
String GoogleURL = "https://accounts.google.com/o/oauth2/auth?client_id=" + Uri.EscapeDataString(GoogleClientID.Text) + "&redirect_uri=" + Uri.EscapeDataString(GoogleCallbackUrl.Text) + "&response_type=code&scope=" + Uri.EscapeDataString("http://picasaweb.google.com/data");
System.Uri StartUri = new Uri(GoogleURL);
// When using the desktop flow, the success code is displayed in the html title of this end uri
System.Uri EndUri = new Uri("https://accounts.google.com/o/oauth2/approval?");
DebugPrint("Navigating to: " + GoogleURL);
WebAuthenticationResult WebAuthenticationResult = await WebAuthenticationBroker.AuthenticateAsync(
WebAuthenticationOptions.UseTitle,
StartUri,
EndUri);
if (WebAuthenticationResult.ResponseStatus == WebAuthenticationStatus.Success)
{
OutputToken(WebAuthenticationResult.ResponseData.ToString());
}
else if (WebAuthenticationResult.ResponseStatus == WebAuthenticationStatus.ErrorHttp)
{
OutputToken("HTTP Error returned by AuthenticateAsync() : " + WebAuthenticationResult.ResponseErrorDetail.ToString());
}
else
{
OutputToken("Error returned by AuthenticateAsync() : " + WebAuthenticationResult.ResponseStatus.ToString());
}
}
catch (Exception Error)
{
//
// Bad Parameter, SSL/TLS Errors and Network Unavailable errors are to be handled here.
//
DebugPrint(Error.ToString());
}
}
在应用程序进行身份验证后,我不确定如何使用文件操作。他们是谷歌提供的.Net库,但它似乎不适用于Windows商店应用程序。
以下是http:
上的文档上传文件Google Drive api:https://developers.google.com/drive/manage-uploads
我尝试使用HttpClient sample,但不确定如何使用我从身份验证示例中获得的身份验证令牌。
答案 0 :(得分:0)
看起来您最好使用WinRT中的BackgroundUploader类,然后使用SetRequestHeader方法将您的身份验证令牌放入Authorization标头中。 BackgroundUploader
应该处理您文件的各个部分(基于Google云端硬盘文档和MSDN文档),所以使用下面的标题和方法,我认为这就是您所需要的。
POST /upload/drive/v2/files?uploadType=media HTTP/1.1
Host: www.googleapis.com
Content-Type: image/jpeg
Content-Length: {number_of_bytes_in_JPEG_file}
Authorization: {your_auth_token}
{JPEG data}
对于较小的文件类型,您应该可以使用System.Net.HttpClient
执行类似操作 - here是关于在该类型上设置标题的帖子。