amazon

Amazon ECS API to fetch 1000 top selling books

ⅰ亾dé卋堺 提交于 2019-11-30 07:16:18
I need the API to fetch the top selling books on Amazon. By default it only fetches the top 10 items , but I need more than 10, near about 1000 items content by using single hit. OR I need the way to scrape the 1000 top selling books using the Amazon ECS API. OR Is there any way except the Amazon API to scrape all of the top selling books on Amazon? here's how I do it - but it won't work for more than 100 items after the end of this month as Amazon are limiting ItemPage to 10. rescheck = Amazon::Ecs.item_search("search term here", :response_group => 'Large', :country => 'uk') n=0 rescheck

How to send Extra parameters in payload via Amazon SNS Push Notification

情到浓时终转凉″ 提交于 2019-11-30 06:17:53
问题 This is something new i am asking as i haven't got it any answers for it on SO. I am using Amazon SNS Push for sending push to my registered devices, everything is working good, i can register devices on my app first start, can send push etc etc. The problem i am facing is that, i want to open a specific page when i open my app through push. I want to send some extra params with the payload but i am not able to do that. I tried this Link :- http://docs.aws.amazon.com/sns/latest/api/API

How to join tables in AWS DynamoDB?

萝らか妹 提交于 2019-11-30 05:42:37
I know the whole design should be based on natural aggregates (documents), however I'm thinking to implement a separate table for localisations (lang, key, text) and then use keys in other tables. However, I was unable to find any example on doing this. Any pointers might be helpful! You are correct, DynamoDB is not designed as a relational database and does not support join operations. You can think about DynamoDB as just being a set of key-value pairs. You can have the same keys across multiple tables (e.g. document_IDs), but DynamoDB doesn't automatically sync them or have any foreign-key

Amazon Launch Template - Updated AMI

非 Y 不嫁゛ 提交于 2019-11-30 05:16:00
问题 I have started using Amazon's new Launch Templates and so far liking it however I just recently made an image from one of my instances, I then created a new version of the Launch template and used the new AMI. When updating my auto scaling group to the new version of the template, upon save it gives me the below error: Error You must use a valid fully-formed launch template. snapshotId cannot be modified on root device Do I need to recreate the AMI? If anyone has any suggestions that would be

How to start an Amazon EC2 instance programmatically in .NET

徘徊边缘 提交于 2019-11-30 03:41:45
I have been attempting to start an instance of EC2 in C# without luck. When passing in an instance id to start the instance I get an error that the instance cannot be found despite that I am passing in an instance ID that I have obtained from the object property. I would be most grateful for any tips or pointers with this. Amazon made huge efforts to integrate its AWS Cloud .Net SDK To VS2008 & VS 2010 1 - Download and Install the AWS SDK msi 2 - Create an AWS Console project, enter your credentials (available from your AWS Console under your login name menu on the top right corner) 3 - Add

RequestThrottling issue in Amazon MWS API

心已入冬 提交于 2019-11-30 03:39:14
I am testing API Sample of Amazon MWS API in C# for submit feeds however after setting AWS Secret key , access key etc. in code i am getting error of RequestThrottled , so there is details what is that but could not find any code sample how to resolved that. I would like to upload feed.xml to amazon seller account <?xml version="1.0" encoding="iso-8859-1"?> <AmazonEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="amzn-envelope.xsd"> <Header> <DocumentVersion>1.01</DocumentVersion> <MerchantIdentifier>M_EXAMPLE_123456</MerchantIdentifier> </Header>

Match sub-string within a string with tolerance of 1 character mismatch

五迷三道 提交于 2019-11-30 02:30:36
I was going through some Amazon interview questions on CareerCup.com, and I came across this interesting question which I haven't been able to figure out how to do. I have been thinking on this since 2 days. Either I am taking a way off approach, or its a genuinely hard function to write. Question is as follows: Write a function in C that can find if a string is a sub-string of another. Note that a mismatch of one character should be ignored. A mismatch can be an extra character: ’dog’ matches ‘xxxdoogyyyy’ A mismatch can be a missing character: ’dog’ matches ‘xxxdgyyyy’ A mismatch can be a

amazon S3 bucket policy - restricting access by referer BUT not restricting if urls are generated via query string authentication

大憨熊 提交于 2019-11-30 00:30:12
I have the following bucket policy set on my bucket: { "Version": "2008-10-17", "Id": "My access policy", "Statement": [ { "Sid": "Allow only requests from our site", "Effect": "Allow", "Principal": { "AWS": "*"}, "Action": "s3:GetObject", "Resource": "arn:aws:s3:::my_bucket/*", "Condition": { "StringLike": { "aws:Referer": [" http://mydomain.com/*"," http://www.mydomain.com/*"] } } }, { "Sid": "Dont allow direct acces to files when no referer is present", "Effect": "Deny", "Principal": {"AWS": "*" }, "Action": "s3:GetObject", "Resource": "arn:aws:s3:::my_bucket/*", "Condition": { "Null": {

Amazon Product Advertising API signed request with Java

半腔热情 提交于 2019-11-30 00:24:39
after many hours of tinkering and reading the whole internet several times I just can't figure out how to sign requests for use with the Product Advertising API. So far I managed to generate a client from the provided WSDL file. I used a tutorial by Amazon for this. You can find it here: Tutorial for generating the web service client So far no problems. To test the client I wrote a small piece of code. The code is intended to simply get some information about a product. The product is specified by its ASIN. The code: package client; import com.ECS.client.jax.AWSECommerceService; import com.ECS

How to add product in amazon using amazon api?

痴心易碎 提交于 2019-11-30 00:24:20
I'm doing a project using ebay and amazon api. I've uploaded products to ebay sandbox using the api. but I searched for api to add products in amazon api. Is there any documentation or reference to do it? Please help me solve this. Thanks You have to use the Amazon MWS API (it's not the same as AWS product API) in order to upload your products to Amazon. Here you can read everything you need to know about MWS. For your particular problem, you'll have to submit a feed which contains the product data you want to upload. Here is the documentation about Amazon's feed mechanism and feed submit