格式化 url 以生成 goo.gl 短网址
如何形成一个 url 来生成 goo.gl 短网址?
在 bit.ly 中可以通过以下方式执行此操作:
处理 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:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用 Fiddler 按照您的描述进行 POST,并使用此问题的 URL,如下所示:
我得到的响应是,
这将是包含您缩短的 URL 的 JSON 表示形式。
I used Fiddler to do the POST as you described, with the URL of this question, like this:
and the response I got was,
That would be a JSON representation that contains your shortened URL.