解析 PFFile 长网址
Posted
技术标签:
【中文标题】解析 PFFile 长网址【英文标题】:Parse PFFile Long Url 【发布时间】:2016-01-21 11:52:33 【问题描述】:我想使用 twilio api 在短信中发送 PFFile url,但是 piffle url 字符串太长了有什么办法可以缩短 piffle url 吗? 提前致谢
【问题讨论】:
网址缩短服务... 你可以用你的 url 发送一个 get 调用,检查这个tinyurl.com/api-create.php?url=http://scripting.com tinyurl.com/api-create.php?url=https://www.google.com.pk 【参考方案1】:这里是 Twilio 开发者宣传员。
我建议您使用带有 API 的可用 URL 缩短器之一来缩短 URL。我一直为此使用Bitly。您可以通过Bitly dev site 查看他们的 API。
您可以使用 GET 请求将 URL 缩短为:
https://api-ssl.bitly.com/v3/shorten?access_token=ACCESS_TOKEN&longUrl=http%3A%2F%2Fgoogle.com%2F
那里的例子长url是http://google.com/
响应看起来有点像这样:
"data":
"global_hash": "900913",
"hash": "ze6poY",
"long_url": "http://google.com/",
"new_hash": 0,
"url": "http://bit.ly/ze6poY"
,
"status_code": 200,
"status_txt": "OK"
You can check out the documentation to the shorten endpoint here.
如果有帮助,请告诉我。
【讨论】:
以上是关于解析 PFFile 长网址的主要内容,如果未能解决你的问题,请参考以下文章