我自己并不真正了解API,但我来找你们试着帮我解决这个问题。
http://www.mywot.com/wiki/API#Reputations这就是我想要遵循的API。
我的目标是什么?
在我的网站上,我正在解析所有外部URL以查看它们是否安全,因此我将使用MYWOT api,它将根据网站安全和声誉评论返回值。
链接会发送到此文件parse_link.php?url=example.com
因此,网址的变量将为$website = $_GET['url'];
我不是要求你为我完全编码,只是帮助我了解这些令人困惑的东西。
答案 0 :(得分:1)
在“安全检查脚本”中,您需要使用域作为值来调用api服务器。根据您链接的网站(您应该阅读它!),您想要使用以下内容进行调用:
(你需要在每个域之后使用斜杠,你可以将多个域串起来,用/分隔) 你的PHP代码看起来像这样(这只是未经测试的伪代码,除了它可以工作!)
<?php
$api = 'http://api.mywot.com/0.4/public_link_json?hosts=';
$domain = 'google.com.';
$results = file_get_contents($api . $domain);//call to api server
$results = json_decode($results);//turn json in to a php object
//now you can do something based on the results
?>