谷歌网址缩短器不返回网址
我只是尝试使用 google url 缩短器进行简单的 ajax 调用来缩短 url,但它不返回任何数据。有人有什么想法吗?
$.ajax({
type: 'POST',
url: "https://www.googleapis.com/urlshortener/v1/url",
contentType: 'application/json',
data: {longUrl: match},
dataType: 'json',
success: function(id){
$('#menu').html(id);
}
});
我有一个 API 密钥,但我只是没有把它放在这里。并且您不需要任何人即可使用该服务。
i am just trying to make a simple ajax call to shorten a url using googles url shortener, but its not returning any data. Anyone have any ideas?
$.ajax({
type: 'POST',
url: "https://www.googleapis.com/urlshortener/v1/url",
contentType: 'application/json',
data: {longUrl: match},
dataType: 'json',
success: function(id){
$('#menu').html(id);
}
});
I have an API key but i just didnt put it in here. and you dont need one to use the service.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 google 渲染的 api 库作为 url Shortner,它可用于 php、java、.net 等,
链接到 API 库 - http://code.google.com/apis/urlshortener/libraries.html
否则你的ajax需要完成跨域ajax,阅读此内容
Use the api library rendered by google for url shortner, its available in php, java , .net etc.,
Link to API libraries - http://code.google.com/apis/urlshortener/libraries.html
Else your ajax need to done for cross domain ajax, read this
您还必须发送您的 apikey。像这样:
希望这有帮助。干杯
You have to send your apikey also. Like this:
Hope this helps. Cheers