服务器设置: ASP.NET在.net 4.5.1集成管道上运行在服务器2012上的iis8上。
我正试图从Google的GoogleWebAuthorizationBroker获取凭据,但我一直“获取访问被拒绝”。
认为这可能是访问问题,我尝试创建内存中的IDataStore(在这里输入)
internal class DummyData : IDataStore
{
internal class item
{
public string Key { get; set; }
public string value { get; set; }
}
internal static List<item> pKeys = new List<item>();
public async Task ClearAsync()
{
pKeys = new List<item>();
}
public async Task DeleteAsync<T>(string key)
{
if (string.IsNullOrEmpty(key))
{
throw new ArgumentException("Key MUST have a value");
}
var generatedKey = GenerateStoredKey(key, typeof(T));
if (pKeys.Any(x => x.Key == generatedKey))
{
pKeys.Remove(pKeys.First(x => x.Key == generatedKey));
}
}
public Task<T> GetAsync<T>(string key)
{
if (string.IsNullOrEmpty(key))
{
throw new ArgumentException("Key MUST have a value");
}
var generatedKey = GenerateStoredKey(key, typeof(T));
var item = pKeys.FirstOrDefault(x => x.Key == generatedKey);
T value = item == null ? default(T) : JsonConvert.DeserializeObject<T>(item.value);
return Task.FromResult<T>(value);
}
public async Task StoreAsync<T>(string key, T value)
{
if (string.IsNullOrEmpty(key))
{
throw new ArgumentException("Key MUST have a value");
}
using (var context = new Platform4AutoDB())
{
var generatedKey = GenerateStoredKey(key, typeof(T));
string json = JsonConvert.SerializeObject(value);
var item = pKeys.FirstOrDefault(x => x.Key == generatedKey);
if (item == null)
{
pKeys.Add(new item { Key = generatedKey, value = json });
}
else
{
item.value = json;
}
}
}
private static string GenerateStoredKey(string key, Type t)
{
return string.Format("{0}-{1}", t.FullName, key);
}
}
我用来测试的基本电话如下:
public string Test()
{
var xStore = new DummyData();
var pSecrect = p4_db.GoogleAccounts.FirstOrDefault(x => x.ClientID == m_nClientID);
if (string.IsNullOrEmpty(pSecrect.V3ClientSecret))
{
return "You are not set up to upload you tube videos.";
}
UserCredential credential;
Sec pSecret = new Sec();
pSecret.Web.client_secret = pSecrect.V3ClientSecret;
var json = new JavaScriptSerializer().Serialize(pSecret);
using (var stream = new MemoryStream(Encoding.UTF8.GetBytes(json)))
{
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
// This OAuth 2.0 access scope allows an application to upload files to the
// authenticated user's YouTube channel, but doesn't allow other types of access.
new[] { YouTubeService.Scope.YoutubeUpload },
"user",
CancellationToken.None,
xStore
).Result;
}
return " ";
}
客户端密钥的检索是通过EF6进行的,并且没有问题。
在我的登台服务器上运行时,我收到以下错误:
System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.AggregateException: One or more errors occurred. ---> System.ComponentModel.Win32Exception: Access is denied
at Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task)
at Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(Task task)
at Google.Apis.Auth.OAuth2.GoogleWebAuthorizationBroker.d__1.MoveNext() in c:\code\google.com\google-api-dotnet-client\default\Tools\Google.Apis.Release\bin\Debug\test\default\Src\GoogleApis.Auth.DotNet4\OAuth2\GoogleWebAuthorizationBroker.cs:line 59
GoogleWebAuthorizationBroker中的第59行是:
return await AuthorizeAsyncCore(initializer, scopes, user, taskCancellationToken, dataStore)
.ConfigureAwait(false)
AuthorizeAsyncCore看起来像这样:
private static async Task<UserCredential> AuthorizeAsyncCore(
GoogleAuthorizationCodeFlow.Initializer initializer, IEnumerable<string> scopes, string user,
CancellationToken taskCancellationToken, IDataStore dataStore = null)
{
initializer.Scopes = scopes;
initializer.DataStore = dataStore ?? new FileDataStore(Folder);
var flow = new GoogleAuthorizationCodeFlow(initializer);
// Create an authorization code installed app instance and authorize the user.
return await new AuthorizationCodeInstalledApp(flow, new LocalServerCodeReceiver()).AuthorizeAsync
(user, taskCancellationToken).ConfigureAwait(false);
}
由于数据存储区不为空,因此无论如何都不应该尝试访问磁盘。
是否有其他人在类似的环境中成功实现了这一点,还是有其他想法?
答案 0 :(得分:0)
我确实得到了这个 - 我的凭证块现在看起来像这样:`
UserCredential credential;
var pJ = new
{
web = new
{
client_id = ConfigurationManager.AppSettings["YoutubeClientID"],
client_secret = ConfigurationManager.AppSettings["YoutubeClientSecret"],
redirect_uris = ConfigurationManager.AppSettings["YouTubeClientRedirectUris"].Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries)
}
};
var json = new JavaScriptSerializer().Serialize(pJ);
using (var stream = new MemoryStream(Encoding.UTF8.GetBytes(json)))
{
credential = GoogleWebAuthorizationBroker.AuthorizeAsync(
GoogleClientSecrets.Load(stream).Secrets,
new[] { YouTubeService.Scope.Youtube },
this.m_nClientID.ToString(),
CancellationToken.None,
pStore
).Result;
}
我也100%确定我在点击之前有一个有效的令牌 - 由于某种原因,当你的令牌无效时,dll似乎默认为存档。
虽然它不是最好的解决方案,但确实有效。
`