本文整理汇总了C#中Framework.RetrieveAPIKey方法的典型用法代码示例。如果您正苦于以下问题:C# Framework.RetrieveAPIKey方法的具体用法?C# Framework.RetrieveAPIKey怎么用?C# Framework.RetrieveAPIKey使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Framework
的用法示例。
在下文中一共展示了Framework.RetrieveAPIKey方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Authorize
public static bool Authorize(Framework.Interfaces.ICore core, bool syncAll)
{
bool result = false;
try
{
if (core.RetrieveAPIKey(Framework.Data.APIKey.GeocachingLive))
{
using (GeocachingLiveV6 client = new GeocachingLiveV6(core))
{
LiveV6.GetUserProfileResponse resp = client.Client.GetYourUserProfile(new LiveV6.GetYourUserProfileRequest()
{
AccessToken = client.Token,
DeviceInfo = new LiveV6.DeviceData()
{
DeviceName = "GlobalcachingApplication",
DeviceUniqueId = "internal",
ApplicationSoftwareVersion = "V1.0.0.0"
}
});
if (resp.Status.StatusCode == 0)
{
result = true;
core.GeocachingComAccount.AccountName = resp.Profile.User.UserName;
core.GeocachingComAccount.MemberType = resp.Profile.User.MemberType.MemberTypeName;
core.GeocachingComAccount.MemberTypeId = (int)resp.Profile.User.MemberType.MemberTypeId;
if (syncAll)
{
if (resp.Profile.User.HomeCoordinates != null)
{
core.HomeLocation.SetLocation(resp.Profile.User.HomeCoordinates.Latitude, resp.Profile.User.HomeCoordinates.Longitude);
}
}
}
else
{
}
}
}
}
catch
{
}
return result;
}