我将使用goo.gl进行URL缩短.我需要提出以下要求:
POST https://www.googleapis.com/urlshortener/v1/url Content-Type: application/json {"longUrl": "http://www.google.com/"}
我的HTML: –
<form method="post" action="https://www.googleapis.com/urlshortener/v1/"> <button type="submit"> submit </button> </form>
我如何在这里添加’content-type’和json?
解决方法
浏览器不支持JSON作为表单提交的媒体类型(支持的类型为
listed in the spec).
从网页发出此类请求的唯一方法是使用XMLHttpRequest对象.
Google提供可以与其URL Shortener API交互的a JavaScript library(包装XMLHttpRequest).