統合が容易
あなたがウェブプログラミングの知識を持っていれば、あなたのウェブサイトに数分でインストールすることができます。もしそうでなければ(ウェブサイトにインストールすることができます)
Mod-Filesはあなたのウェブサイトに挿入する準備の整ったカタログを提供しています。
我々のデータベースは、あなたのウェブサイトにこのapiを置くときに、あなたのウェブサイト上で同じかカスタムカーの設定を得ることができるすべての車のブランド、モデル、エンジン、馬力の在庫と修正された利得の間のパワー、トルク差を制御しています。
利用可能なブランド
使用可能なモデル
利用可能なモーター
あなたがウェブプログラミングの知識を持っていれば、あなたのウェブサイトに数分でインストールすることができます。もしそうでなければ(ウェブサイトにインストールすることができます)
あなたのウェブサイトのようなデザインの数式を編集することができ、私たちのウェブサイトへのリンクはありません。
あなたは私たちのウェブサイトのように車のロゴやテックスを使用することができます。
毎回車を更新しています。このAPIがあなたのウェブサイトにインストールされると、あなたのウェブサイトはこのアップデートを手に入れます。
GoogleのAPIを使用すると、次のものにアクセスできます。
すでに使用しているプログラミング言語を使用してカタログをウェブサイトに追加してください。
$url = 'https://mod-files.com/api/chip/v1/types/cars/marks?' . http_build_query([
'api_key' => 'API_KEY',
'api_secret' => 'API_SECRET'
]);
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE); // UPDATE
$response = curl_exec($ch);
error_log($response);
import urllib
params = {
'api_key': 'API_KEY',
'api_secret': 'API_SECRET'
}
url = 'https://mod-files.com/api/chip/v1/types/cars/marks?' + urllib.urlencode(params)
response = urllib.urlopen(url)
print response.read()
require "net/http"
require "uri"
uri = URI.parse("https://mod-files.com/api/chip/v1/types/cars/marks")
params = {
'api_key' => 'API_KEY',
'api_secret' => 'API_SECRET'
}
response = Net::HTTP.post_form(uri, params)
puts response.body
var https = require('https');
var data = JSON.stringify({
api_key: 'API_KEY',
api_secret: 'API_SECRET'
});
var options = {
host: 'www.mod-files.com',
path: '/api/chip/v1/types/cars/marks',
port: 443,
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Content-Length': Buffer.byteLength(data)
}
};
var req = https.request(options);
req.write(data);
req.end();
var responseData = '';
req.on('response', function(res){
res.on('data', function(chunk){
responseData += chunk;
});
res.on('end', function(){
console.log(JSON.parse(responseData));
});
});