如何使用 Ning API 来创建这样的东西?
http://www.friendsoremies.com/vip/blog/embedAll?pageSize=10
只是博客文章的列表。
以下是 API 的链接: http://developer.ning.com/docs /ningapi/1.0/index.html
我不是一个开发人员。任何帮助将不胜感激。或者,如果有人熟悉这些东西并想被雇用,我很乐意付一些钱。
http://www.friendsorenemies.com/vip/blog/embedAll?pageSize=10
Just a list of the blog posts.
Here is the link to the API: http://developer.ning.com/docs/ningapi/1.0/index.html
I'm not much of a developer. Any help would be appreciated. Or if anybody is familiar with this stuff and wants to be hired, I'd be glad to pay some money.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,据我所知,您对 API 并不熟悉。您可以使用
cURL
访问信息,文档中有一个很好的页面,为您提供示例。现在在 php 中使用 curl 相当简单:
现在您在
$response
中拥有了所需的所有信息检查 API 文档以了解使用此 API 的确切方法。另请检查php.net 上的curl
Ok i will from what i see you are not familiar with APIs. You access the information using
cURL
there is a good page in the documentation that gives you examples.Now for using curl it's fairly simple in php:
Now you have all the information you need inside
$response
Check the API documentation for the exact way to work with this API. also check curl on php.net