I am using AEM to create new website where I am looking for some open source currency converter service (wen service, restful) available over net.
The way I want to implement currency conversion is like fourseasons site when you go to room booking, when I select USD all figure on my page in INR should convert to USD.
Regards
Here is Fee rest service for currency convertation.
http://www.webservicex.net/CurrencyConvertor.asmx/ConversionRate?FromCurrency=USD&ToCurrency=INR
Related
Is it possible to retrieve the service fee charges independent of the SKU like Subscription Fee, FBA Inventory Storage Fee etc. using amazon market API.
I tried the Financial Event API which returns the service fees in the format
<ServiceFeeEvent>
<FeeList>
<FeeComponent>
<FeeType>FBADisposalFee</FeeType>
<FeeAmount>
<CurrencyAmount>-0.15</CurrencyAmount>
<CurrencyCode>USD</CurrencyCode>
</FeeAmount>
</FeeComponent>
</FeeList>
</ServiceFeeEvent>
Which does not contains the data like PostedDate. Is there any oter APIs availabile to get the detailed data of service fee amounts?
In case it's useful for someone else, I figured out an approach that kind of works for me, though it's not ideal.
I'm using the Reports API to download the _GET_V2_SETTLEMENT_REPORT_DATA_FLAT_FILE_ report, which has the fees and a posted-date column. Some of Amazon's documentation about it can be found here: http://docs.developer.amazonservices.com/en_US/reports/Reports_ReportType.html
The disadvantage is that it's only generated once every two weeks. The advantage, compared to the Finances API, is that you get the posting date and the specific transaction that the fee came from.
I am using Spree version 2.4.2. I want the Indian Rupee currency instead of US Dollars. In the admin panel, I changed the US Dollars setting to Indian Rupee and it is throwing the error "We are unable to calculate shipping rates for the selected items.".
You need to ensure that your shipping method is configured correctly. If you have an order that costs ₹500 and the shipping methods are all configured in USD, it won't be able to find an appropriate shipping method. Your shipping method calculator must also store its cost in rupees.
To change currency in spree
In config/initializers/spree.rb
change config.currency = "USD" to "INR"
And in spree admin change you shipping method currency.
It will work for me, I think It also work for you.
I am looking for web weather service in Australia to get weather data for a location in Australia. Now we are using MSN Webs Service (weather.service.msn.com) but users are complaining about the data accuracy.
I have compared Australian weather data between MSN and NineMSN and it doesn't match exactly.
Is there any simmilar web service provided by ninemsn or Weatherzone?
All Australian weather data derives from the Australian Bureau of Meteorology.
bom.gov.au
i was looking to get the shipping price from amazon using the advertising api
what i am basically looking for can be seen here http://www.amazon.com/VGN-CR320E-VGN-FE550G-VGN-FE880E-VGN-FZ240E-VGN-SZ240P/dp/B003E2VP7I/
I am looking for the shipping quote ex. on the above page it's $2.59 + $6.39 shipping
is it possible to retrieve shipping rate using the api , i tried it with a ResponseGroup as Large and few others but it didn't work
The PA-API will never have this information. You can get it through MWS and should use it for all sales and seller related information. You can sign up at http://developer.amazonservices.com and it is free.
I'm creating a application where the user will type in the name of a video game and a query will be sent to a servlet. I want this query to search the amazon product database and if the game is found i want to grab the information such as the name, publisher, platform genre etc and add this information to my database. Just like price grabber does. There is an example below.
http://video-games.pricegrabber.co.uk/nintendo-ds-games/m/25813985/details/st=product_tab/
Can this be done and if so what will i need to know and learn to do this.
I believe you should be able to use the Amazon Product Advertising API to query for this kind of product information. However the current Terms of Use appear to restrict you from storing the data into your database for more than 24 hours.