http://www.friendsorenemies.com/vip/blog/embedAll?pageSize=10
只是一个博客帖子列表。
以下是API的链接:http://developer.ning.com/docs/ningapi/1.0/index.html
我不是一个开发人员。任何帮助,将不胜感激。或者,如果有人熟悉这些东西并希望被雇用,我会很乐意支付一些钱。
答案 0 :(得分:0)
好的,我会从我看到你不熟悉的API。您可以使用cURL
访问信息。文档中有一个很好的页面可以为您提供examples.
现在使用curl在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);
现在,您可以在$response
内获得所需的所有信息
查看API文档以了解使用此API的确切方法。还要检查curl on php.net