Re: run application without preparing Access key, Secret key
The samples that work with Amazon require the access/secret keys. The others don't.
If for any reason you need to compile the Amazon samples without actual keys, just edit AmazonCommonAmazon.cs to use:
public const String AccessKey = "";
public const String SecretKey = "";
|