My question obviously is about the Amazon web service. I signed up for the AWS, and received my access keys, and entered them here:
Code: Select all
$cfg['AWSAccessKeyId'] = '********';
$cfg['AWSSecretAccessKey'] = '*******';
Code: Select all
$cfg['AWSAccessKeyId'] = '********';
$cfg['AWSSecretAccessKey'] = '*******';
Code: Select all
// +------------------------------------------------------------------------+
// | Image service |
// +------------------------------------------------------------------------+
// | For the Amazon web service a AWSAccessKeyId and AWSSecretAccessKey is |
// | needed. Get these free from: http://aws.amazon.com |
// +------------------------------------------------------------------------+
$cfg['AWSAccessKeyId'] = '***';
$cfg['AWSSecretAccessKey'] = '***';
$cfg['image_service_name'][] = 'Amazon';
$cfg['image_service_url'][] = 'http://ecs.amazonaws.com/onca/xml?Service=AWSECommerceService&AWSAccessKeyId=%awsaccesskeyid&Operation=ItemSearch&ResponseGroup=Images&SearchIndex=Music&Type=Lite&Artist=%artist&Title=%album&Timestamp=%timestamp';
$cfg['image_service_preg'][] = '';
$cfg['image_service_name'][] = 'Amazon (uk)';
$cfg['image_service_url'][] = 'http://ecs.amazonaws.co.uk/onca/xml?Service=AWSECommerceService&AWSAccessKeyId=%awsaccesskeyid&Operation=ItemSearch&ResponseGroup=Images&SearchIndex=Music&Type=Lite&Artist=%artist&Title=%album&Timestamp=%timestamp';
$cfg['image_service_preg'][] = '';
$cfg['image_service_name'][] = 'Amazon (de)';
$cfg['image_service_url'][] = 'http://ecs.amazonaws.de/onca/xml?Service=AWSECommerceService&AWSAccessKeyId=%awsaccesskeyid&Operation=ItemSearch&ResponseGroup=Images&SearchIndex=Music&Type=Lite&Artist=%artist&Title=%album&Timestamp=%timestamp';
$cfg['image_service_preg'][] = '';
Yes if the site doesn't use any kind of authentication.tdurden wrote:So in theory, with the right search string information, you could add any site to search?