amazon

Amazon In-app purchase

拜拜、爱过 提交于 2019-11-30 00:04:30
问题 has anybody tried implementing amazon's in-app purchase? I'm having problem implementing the example on their site. below example, it's giving me INVALID_SKU response: when purchase is initiated, PurchasingManager.initiateItemDataRequest("DeveloperSKU-1234"); the response of above will be recieved by below code: public void onPurchaseResponse(final PurchaseResponse purchaseResponse) { Log.v(TAG, "onPurchaseResponse recieved"); Log.v(TAG, "PurchaseRequestStatus:" + purchaseResponse

Questions about preparing an apk for the Amazon Android App Store

时光怂恿深爱的人放手 提交于 2019-11-29 23:21:51
Amazon's documentation is surprising lacking in information about the submitting binary process. From what I can tell, you submit an unsigned binary and they wrap it in their own code and produce a signed apk? This leaves several questions: Does the Amazon App Store perform a zipalign for you? If you have your app in the Android Market (Google's) already, is it recommended to use the same package name or a different one? Does it make any difference? I also saw elsewhere, that they offer the option to download the apk they prepare and sign it with your own key. Is it recommended to take this

Amazon EC2 Elastic Load Balancer: Does its IP ever Change?

梦想与她 提交于 2019-11-29 22:56:11
Does the ELB's IP Ever Change once setup, or will it always access instances from the same location during its lifetime no matter what might be going on with it behind the scenes at Amazon? ELB's IP address keeps changing. You should instead use the DNS name provided to you. http://developer.amazonwebservices.com/connect/thread.jspa?threadID=32280 The short answer: Yes, ELB's IP addresses (both the ones that are publicly distributed to clients of your service, and the internal IPs from which ELB sends traffic to your instances) dynamically change. The long answer: See my article about how ELB

How do I define a custom slot type that isn't a list?

◇◆丶佛笑我妖孽 提交于 2019-11-29 22:17:29
I'm playing around with the Alexa Skills Kit (for the Amazon Echo) and want to create a skill that would send the intent to an AWS Lambda function which would just email something back to me. Sample Utterances would be something like this: MemoIntent take a memo {myMemo} MemoIntent to take a memo {myMemo} MemoIntent send a memo {myMemo} This would allow me to say something like "Alexa, ask my secretary to take a memo, remind me to go to the store on my way home today" and would then get an email from my Lambda function saying, "remind me to go to the store on my way home today." The myMemo

How do I get a book graphic and description from the Amazon Book API?

早过忘川 提交于 2019-11-29 20:43:24
This URL sends an ISBN number to Amazon and gets back a small bit of XML including author, title, and publisher. However, I also want to get small, medium and large graphic and book descriptions of the title. Problem: I can find no REST URL examples/documention that work, either at Google or when logged into my "AWS Account" at Amazon Associates. I find a lot of examples from 2003-2005 but they are all out-of-date and give errors, it seems that Amazon's cloud web services have obfuscated their simple REST API documentation for their books. Can anyone point me to some documentation on how I can

Amazon MWS sandbox

≡放荡痞女 提交于 2019-11-29 20:38:00
I intend to develop a client for Amazon's Marketplace webservices (MWS). My requirements would be to update the order, synchronize the order status, get the order details using the APIs they have. However, I could not find a Sandbox environment to test these scenarios. Amazon has a payment Sandbox I understand, but is there a sandbox available to test these web-services? If not, any pointers on how to go about testing the above mentioned scenarios with Amazon MWS? Many thanks in anticipation. UPDATE As seen in the comments to this post, Amazon no longer provides a staging / test environment. i

How to conditionally use vendor-specific APIs for Android apps?

这一生的挚爱 提交于 2019-11-29 20:35:42
问题 With Android app stores offering marketplace-specific APIs, how do I build an Android app that conditionally uses vendor-specific libraries? For example, Amazon offers their own In-App Purchase and "GameCircle" APIs. Google has their own Licensing APIs, and now Ouya will have their own APIs for IAP and hardware controllers. With the proliferation of these vendor-specific SDKs it's becoming difficult to maintain several separate builds of my Android games. I would like to know how to build my

How does one find prices from Amazon's site programmatically? [closed]

你说的曾经没有我的故事 提交于 2019-11-29 20:16:31
So Amazon has lots of different APIs for different things, and it's hard to find the one I'm looking for. I have a client that sells things and checks Amazon's lowest price to know where to price their things (slightly under the lowest thing there). They want functionality integrated into their inventory system that would automatically find the product's lowest price on Amazon and display that. I was wondering which AWS service is best suited to this task. I see the Product Advertising API, and that looks like the closest thing right now. Is that so? I don't really want to rely on a scraper

S3 static website index document

雨燕双飞 提交于 2019-11-29 17:14:12
问题 I'm trying to upload my static website to my s3 bucket. I've managed to accomplish this. I've created my_bucket and then create a sub_bucket named test_folder and in that I uploaded all my css, html, js files. It would look like this now: my_bucket/ test_folder index.html And I was able to view my index.html, horray! :D. But my question is in setting up the index document, since the index.html is located to a sub_bucket: test_folder/index.html when I try to save it, gave me The IndexDocument

Amazon Product Advertising API C#

前提是你 提交于 2019-11-29 14:57:06
问题 Can somebody tell me C# excample of using Amazon Product Advertising API, for example to lookup item. All i found is not working now because of changes. Thanks! edit: the most popular error is "Failed serialization of message body: ItemSearchRequest1 cant create temporary class" 回答1: There's a C# sample here: http://aws.amazon.com/code/Product-Advertising-API/3941 FWIW, the AWS thread I mentioned includes these steps for a workaround: These are the steps as of January 31, 2012 to fix this