我已经浪费了一整天的时间在C#.NET中为URL Shortener API查找Google服务帐户OAuth2的示例代码。
我正在尝试将shortener api用于服务器到服务器的请求。
请帮帮我。
感谢
使用Json.Net库(您可以从这里获得API密钥)
string longURL="http://www.google.com";
string url = "https://www.googleapis.com/urlshortener/v1/url?key=" + apiKey;
WebClient client = new WebClient();
client.Headers["Content-Type"] = "application/json";
var response = client.UploadString(url,JsonConvert.SerializeObject(new { longUrl = longURL }));
var shortUrl = (string)JObject.Parse(response)["id"];
在我看来,你应该阅读正确的谷歌页面。
其中的一部分:
您的应用程序发送到Google URL Shortener API的每个请求需要向谷歌识别您的应用程序。有两种方法识别您的应用程序:使用OAuth 2.0令牌(授权请求)和/或使用应用程序的API密钥。
获取并使用API密钥
向Google URL Shortener API请求公共数据必须附带一个标识符,该标识符可以是API密钥或身份验证代币
要获取API密钥,请访问API控制台。在"服务"窗格中,激活Google URL Shortener API;如果出现服务条款,阅读并接受它们。
接下来,转到API访问窗格。API键位于的底部附近在标题为"简单API访问"的部分中的该窗格
在拥有API密钥后,应用程序可以附加查询参数CCD_ 1分配给所有请求URL。
API密钥对于嵌入URL是安全的;它不需要任何编码。
缩短长URL
Google URL Shortener API允许您像缩短URL一样缩短URL例如,缩短URLhttp://www.google.com/,发送以下请求:
POST https://www.googleapis.com/urlshortener/v1/url
Content-Type: application/json
{"longUrl": "http://www.google.com/"}
我用HttpClient在windows8中实现了它。这是代码,不需要Api密钥。
var serializedUrl = JsonConvert.SerializeObject(new { longUrl = yourlongUrl});
HttpClient client = new HttpClient();
var Content = new StringContent(serializedUrl, Encoding.UTF8, "application/json");
var resp = await client.PostAsync("https://www.googleapis.com/urlshortener/v1/url", Content);
var content = await resp.Content.ReadAsStringAsync();
var jsonObject = JsonConvert.DeserializeObject<JObject>(content);
var shortedUrl = jsonObject["id"].Value<string>();
这是为我工作的代码。此代码建立服务器到服务器的连接并获取身份验证令牌。然后它发出一个缩短URL的调用。API密钥存储在app.config.中
您可以在此处阅读更多信息:http://www.am22tech.com/google-url-shortener-api-shorten-url/
using System;
using System.Collections.Generic;
using System.Web;
using System.Configuration;
using System.Security.Cryptography.X509Certificates;
using System.Threading;
using System.Data;
using Google.Apis.Auth.OAuth2;
using Google.Apis.Urlshortener.v1;
using Google.Apis.Urlshortener.v1.Data;
using Google.Apis.Services;
public static string shortenURL(string urlToShorten, string webSiteBasePath)
{
string shortURL = string.Empty;
try
{
/********************************************************************/
string AuthenticationToken = string.Empty;
var certificate = new X509Certificate2(webSiteBasePath + "/" + ConfigurationManager.AppSettings["IHSGoogleURlShortenerPrivateKeyName"].ToString(),
ConfigurationManager.AppSettings["IHSGoogleURlShortenerPrivateKeySecret"].ToString(),
X509KeyStorageFlags.MachineKeySet |
X509KeyStorageFlags.PersistKeySet |
X509KeyStorageFlags.Exportable);
String serviceAccountEmail = ConfigurationManager.AppSettings["IHSGoogleURLShortenerServiceAcEmail"].ToString();
ServiceAccountCredential credential = new ServiceAccountCredential(
new ServiceAccountCredential.Initializer(serviceAccountEmail)
{
Scopes = new[] { UrlshortenerService.Scope.Urlshortener }
}.FromCertificate(certificate));
if (credential.RequestAccessTokenAsync(CancellationToken.None).Result)
{
AuthenticationToken = credential.Token.AccessToken;
}
// Create the service.
var service = new UrlshortenerService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = ConfigurationManager.AppSettings["IHSGoogleURLShortnerAppName"].ToString(),
});
// Shorten URL
Url toInsert = new Url { LongUrl = urlToShorten };
toInsert = service.Url.Insert(toInsert).Execute();
shortURL = toInsert.Id;
}
return (shortURL);
}