setApplicationId() 공개 메소드

Sets the DeveloperID
public setApplicationId ( string $developerId )
$developerId string The DeveloperID
예제 #1
0
 private static function search($keyword)
 {
     if ($output = self::fetchCache($keyword)) {
         return $output;
     }
     $options = get_option('wp_rakuten_options');
     // 楽天商品検索
     $client = new RakutenRws_Client();
     $client->setApplicationId($options['developer_id']);
     $client->setAffiliateId($options['affiliate_id']);
     $response = $client->execute('IchibaItemSearch', array('keyword' => $keyword, 'availability' => '1', 'sort' => '+affiliateRate', 'hits' => 1));
     $html = '';
     foreach ($response as $item) {
         if ((int) $item['imageFlag'] === 1) {
             $html .= "<p>";
             $html .= "<a href=\"{$item['affiliateUrl']}\">";
             $html .= "<img src=\"{$item['mediumImageUrls'][0]['imageUrl']}\"><br />";
             $html .= "{$item['itemName']}</a>";
             $html .= "</p>";
         }
     }
     $output = '<!-- Rakuten Plugin Start -->';
     $output .= $html;
     $output .= '<!-- Rakuten Plugin End -->';
     self::createCache($keyword, $output);
     return $output;
 }
 private function search_ranking($search_parms)
 {
     $rakuten_client = new RakutenRws_Client();
     $rakuten_client->setApplicationId($this->rakuten_apuri_id);
     $rakuten_client->setAffiliateId($this->afferiate_id);
     $response = $rakuten_client->execute('IchibaItemRanking', $search_parms);
     if ($response->isOk()) {
         //$this->Session['search_item_result'] = $response;
         $this->Session['search_item_result'] = $this->convArr_RakutenApiResponce($response);
         $this->Session['search_item_result_max_page'] = $response['pageCount'];
         $this->Session['search_item_result_now_page'] = $response['page'];
     } else {
         header('Content-Type: application/json');
         echo json_encode(array('error' => 'search_error', 'error_message' => $response->getMessage()));
         exit;
     }
 }
예제 #3
0
}
// 現在のリクエストURLを取得します。(リダイレクト用)
$port = ':' . $_SERVER['SERVER_PORT'];
$isSecure = isset($_SERVER['SSL']) && $_SERVER['SSL'] == 'on';
$scheme = 'http';
if ($isSecure) {
    $scheme = 'https';
}
if ($scheme == 'http' && $port == ':80' || $scheme == 'https' && $port == ':443') {
    $port = '';
}
$url = $scheme . '://' . $_SERVER['HTTP_HOST'] . $port . $_SERVER['PHP_SELF'] . '?' . $_SERVER['QUERY_STRING'];
// Clientインスタンスを生成
$rwsclient = new RakutenRws_Client();
// アプリIDをセット
$rwsclient->setApplicationId(RAKUTEN_APP_ID);
// Secretをセット
$rwsclient->setSecret(RAKUTEN_APP_SECRET);
// アフィリエイトIDをセット (任意)
$rwsclient->setAffiliateId(RAKUTEN_APP_AFFILITE_ID);
// 認証時リダイレクトURLをセット
$rwsclient->setRedirectUrl($url);
// リクエストに 'code' があった場合、アクセストークンを取得し
// API を実行します。
// If a request has 'code', get access_token and execute API
if ($_GET['code']) {
    // アクセストークンを取得します。
    if ($rwsclient->fetchAccessTokenFromCode()) {
        // Bookmark追加APIを実行します (http://webservice.rakuten.co.jp/api/favoritebookmarkadd/)
        $response = $rwsclient->execute('FavoriteBookmarkAdd', array('itemCode' => $_GET['itemCode']));
    }