格式化 url 以生成 goo.gl 短网址

发布于 2024-11-01 20:43:53 字数 714 浏览 1 评论 0原文

如何形成一个 url 来生成 goo.gl 短网址?

在 bit.ly 中可以通过以下方式执行此操作:

http://api.bit.ly/shorten?t=1&version=2.0.1&login=bitlyspreadsheets&apiKey=(api_key)&format=text& longUrl=http://www.google.com

处理 goo.gl API 的文档

正常的请求表单是这样的:

发布https://www.googleapis.com/urlshortener/v1/url 内容类型:application/json

{"longUrl": "URL"}

如何将其转换为 url?

How do a form a url to generate a goo.gl short url?

In bit.ly can do this with:

http://api.bit.ly/shorten?t=1&version=2.0.1&login=bitlyspreadsheets&apiKey=(api_key)&format=text&longUrl=http://www.google.com

Working off the documentation for goo.gl API

The normal request form is this:

POST https://www.googleapis.com/urlshortener/v1/url
Content-Type: application/json

{"longUrl": "URL"}

How do I convert this to a url?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

堇色安年 2024-11-08 20:43:53

我使用 Fiddler 按照您的描述进行 POST,并使用此问题的 URL,如下所示:

POST /urlshortener/v1/url HTTP/1.1
User-Agent: Fiddler
Content-Type: application/json
Host: www.googleapis.com
Content-Length: 102

{"longUrl" : "http://stackoverflow.com/questions/5683562/formatting-url-to-generate-goo-gl-short-url"}

我得到的响应是,

HTTP/1.1 200 OK
ETag: "7EqIPxWjdFEMGopn0m-wh5UjU2M/mbXotpNse1SbcCFgA5pLLsB6hi4"
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Sat, 16 Apr 2011 01:13:41 GMT
Content-Type: application/json; charset=UTF-8
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Content-Length: 164

{
 "kind": "urlshortener#url",
 "id": "http://goo.gl/Ztc9b",
 "longUrl": "http://stackoverflow.com/questions/5683562/formatting-url-to-generate-goo-gl-short-url"
}

这将是包含您缩短的 URL 的 JSON 表示形式。

I used Fiddler to do the POST as you described, with the URL of this question, like this:

POST /urlshortener/v1/url HTTP/1.1
User-Agent: Fiddler
Content-Type: application/json
Host: www.googleapis.com
Content-Length: 102

{"longUrl" : "http://stackoverflow.com/questions/5683562/formatting-url-to-generate-goo-gl-short-url"}

and the response I got was,

HTTP/1.1 200 OK
ETag: "7EqIPxWjdFEMGopn0m-wh5UjU2M/mbXotpNse1SbcCFgA5pLLsB6hi4"
Cache-Control: no-cache, no-store, max-age=0, must-revalidate
Pragma: no-cache
Expires: Fri, 01 Jan 1990 00:00:00 GMT
Date: Sat, 16 Apr 2011 01:13:41 GMT
Content-Type: application/json; charset=UTF-8
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Server: GSE
Content-Length: 164

{
 "kind": "urlshortener#url",
 "id": "http://goo.gl/Ztc9b",
 "longUrl": "http://stackoverflow.com/questions/5683562/formatting-url-to-generate-goo-gl-short-url"
}

That would be a JSON representation that contains your shortened URL.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文