bitly 不会缩短服务器上的 url

发布于 2024-11-26 14:07:37 字数 748 浏览 1 评论 0原文

我正在使用 bitbly API 来缩短网址。

这是我正在使用的 PHP 代码片段。

<?php
        $bitly = 'http://api.bit.ly/shorten?version='.$version.'&longurl='.urlencode($url).'&login='.$login.'&apikey='.$appkey.'&format='.$format;

        //The above string evaluates to:
http://api.bit.ly/shorten?version=&longurl=http://real.address.replace&login=myname&apikey=A_key_provided_by_bitbly&format=json

        $response = file_get_contents($bitly);

        $json = @json_decode($response,true);
}

当我调用它时,我得到以下 JSON 响应:

{"errorCode": 500, "errorMessage": "MISSING_ARG_APIKEY", "results": null, "statusCode": ""}

我一生都无法理解为什么 bitly 返回该错误 - 特别是因为我正在传递 api 密钥 - 是什么给出了?

I am using the bitbly API to shorten urls.

here is a snippet of the PHP code I am using.

<?php
        $bitly = 'http://api.bit.ly/shorten?version='.$version.'&longurl='.urlencode($url).'&login='.$login.'&apikey='.$appkey.'&format='.$format;

        //The above string evaluates to:
http://api.bit.ly/shorten?version=&longurl=http://real.address.replace&login=myname&apikey=A_key_provided_by_bitbly&format=json

        $response = file_get_contents($bitly);

        $json = @json_decode($response,true);
}

When I invoke this, I get the following JSON response:

{"errorCode": 500, "errorMessage": "MISSING_ARG_APIKEY", "results": null, "statusCode": ""}

I can't for the life of me, understand why bitly is returning that error - especially since I am passing the api key - what gives?

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

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

发布评论

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

评论(1

妖妓 2024-12-03 14:07:37

该参数是apiKey,而不是apikey

The parameter is apiKey, not apikey.

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