如何在 PHP 中使用 tumblr API?
我很少使用 PHP,但我需要连接到 tumblr api 以便客户端显示他们的博客文章。
该 API 接受 HTTP GET 请求并返回 JSON 对象,但我对此一无所知。我一直在尝试在本地主机上使用 http_get ,但它似乎根本不起作用。所以我的问题是:
1)在 php 中执行 HTML GET 的最佳方法是什么? 2) 有关使用 JSON 对象的任何信息,或者更好的是与 tumblr api 直接相关的信息。一些直接的代码可以帮助我理解,但欢迎任何建议
谢谢
I am an infrequent user of PHP, but I need to connect to the tumblr api for a client to display their blog posts.
The api takes HTTP GET requests and returns JSON objects, neither of which do I know anything about. I have been trying to mess around with http_get on my localhost but it doesn't seem to be working at all. So my questions are thus:
1) What is the best method for performing an HTML GET in php?
2) Any info at all on using JSON objects, or even better directly related to the tumblr api. Some straight-up code would work wonders in helping me understand, but any advice is welcome
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当我制作有点粗糙的Tumblr 备份脚本时。我使用 PHP 包装器Tumblr API 的类,名为 php-rest-api。
通过这种方式,您可以让包装类处理解决方案的这些方面。您可以在 TumblrBackup.php 文件。
When I made my somewhat crufty Tumblr backup script. I used a PHP wrapper class for the Tumblr API called php-rest-api.
This way you can let the wrapping class deal with these aspects of the solution. You can see an example of using the class in my code in the TumblrBackup.php file.