All URIs are relative to https://ads-search.yahooapis.jp/api/v1
Method | HTTP request | Description |
---|---|---|
targetingIdeaServiceGetPost | POST /TargetingIdeaService/get |
\Yahoo\Model\TargetingIdeaServiceGetResponse targetingIdeaServiceGetPost($targetingIdeaServiceSelector)
指定された情報を元に新しいキーワード候補を提案するサービスです。
Suggests related keywords based on the specified information.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
// Configure OAuth2 access token for authorization: oAuth
$config = Yahoo\Configuration::getDefaultConfiguration()->setAccessToken('YOUR_ACCESS_TOKEN');
$apiInstance = new Yahoo\Api\TargetingIdeaServiceApi(
// If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
// This is optional, `GuzzleHttp\Client` will be used as default.
new GuzzleHttp\Client(),
$config
);
$targetingIdeaServiceSelector = new \Yahoo\Model\TargetingIdeaServiceSelector(); // \Yahoo\Model\TargetingIdeaServiceSelector |
try {
$result = $apiInstance->targetingIdeaServiceGetPost($targetingIdeaServiceSelector);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling TargetingIdeaServiceApi->targetingIdeaServiceGetPost: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
targetingIdeaServiceSelector | \Yahoo\Model\TargetingIdeaServiceSelector | [optional] |
\Yahoo\Model\TargetingIdeaServiceGetResponse
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]