LoginSignup
12
11

More than 5 years have passed since last update.

DMM.com商品情報検索APIを叩くライブラリ

Posted at

下記のようなコードを書くと、配列で検索結果が返ってきます。

<?php
$apiId = 'あなたのAPI ID';
$affiliateId = 'あなたのアフィリエイトID';

$client = new \DMM\Client($apiId, $affiliateId);
$result = $client->request(array(
    'keyword' => 'ハリーポッター',
));

print_r($result);

Python版はこちら: DMMのAPIを叩くクラス #Python - Qiita

12
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
12
11