如何使用 Ning API 来创建这样的东西?

发布于 2024-11-05 20:28:14 字数 391 浏览 6 评论 0原文

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 技术交流群。

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

发布评论

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

评论(1

长发绾君心 2024-11-12 20:28:14

好吧,据我所知,您对 API 并不熟悉。您可以使用 cURL 访问信息,文档中有一个很好的页面,为您提供示例。

现在在 php 中使用 curl 相当简单:

        $url = 'https://external.ningapis.com/xn/rest/apiexample/1.0/Photo/recent?xn_pretty=true'
        $ch = curl_init(); 
        curl_setopt($ch, CURLOPT_URL, $url); 
        curl_setopt($ch, CURLOPT_HEADER, FALSE); 
        curl_setopt($ch, CURLOPT_NOBODY, TRUE); // remove body 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); 
        $response = curl_exec($ch); 
        $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
        curl_close($ch);

现在您在 $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:

        $url = 'https://external.ningapis.com/xn/rest/apiexample/1.0/Photo/recent?xn_pretty=true'
        $ch = curl_init(); 
        curl_setopt($ch, CURLOPT_URL, $url); 
        curl_setopt($ch, CURLOPT_HEADER, FALSE); 
        curl_setopt($ch, CURLOPT_NOBODY, TRUE); // remove body 
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); 
        $response = curl_exec($ch); 
        $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); 
        curl_close($ch);

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

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