我打算编写一个小程序来查询Amazon Web服务以获取图书信息。
鉴于我在网上找到的一些样本,我写道;
namespace TestWCF
{
class Program
{
static void Main(string[] args)
{
Console.Write("Enter keyword: ");
var line = Console.ReadLine();
if (line == null)
{
return;
}
using (var svc = new AmazonSearchPortClient())
{
var keywordReq = new KeywordRequest
{
locale = "us",
type = "lite",
sort = "reviewrank",
mode = "books",
keyword = line,
tag = "associate-id",
devtag = "????????????"
};
var productInfo = svc.KeywordSearchRequest(keywordReq);
foreach(var detail in productInfo.Details)
{
Console.WriteLine(detail.ProductName);
}
}
}
}
这不起作用,因为它在行返回验证失败;
var productInfo = svc.KeywordSearchRequest(keywordReq);
我不确定我应该在标记和devtag字段中添加哪些信息。有人说我应该把员工ID,但是我会把它放到devtag?
非常感谢,
的问候。 }