I'm working on a freemium ratings and review plugin which clients will sign up to use. The idea is that the client (lets refer to them as Supplier A) will sign up and integrate their e-commerce site with our API. When an order is created SupplierA's system will send our API the details and we will store them, a few days later we will request by email the customer write a review of the company and of the product. We store SupplierA's reviewss on our server and have several methods for SupplierA to retrieve them.
How do we integrate our product with google seller ratings, to allow us send SupplierA's product or company reviews and ratings to google, these reviews will then need to show on the clients Google Seller Ratings account and in the google search results for SupplierA.
Idealy we're looking at sending product and company reviews to google on behalf of our clients, overall making it easier for them. Where do I look for the correct API calls, any examples of similar uses, code repositories, How can I work with multiple client accounts?.
You need to have an agreement with Google to send them data for Seller Ratings, we've been trying to get this with Google for about 2 years with little luck as it's a guarded secret. The moment I learn more I'll update the answer, I know someone who has been able to get approved but he wasn't able to share much with me.
Related
I work for a large online travel company that allows customers to book hotels.
They currently show users Trip Advisor reviews of the property they are currently viewing but are wanting to switch to Google Reviews instead.
I believe the correct API is Google Places but it appears limited to 5 reviews? Is there any sort of widget or way to implement Google Reviews?
Just to note, this is not to show reviews of our business but of a hotel searched for by a user.
1) first of all you need to white list your google my business api for whatever project you are working on in your project as its private api. Google my business api will work on the locations associated with your account so make sure you verified the LOCATIONS from any account you know. Then you can try out the api call you mentioned in OAuthplayground.
2) Follow steps mentioned in below documentation URL to set it up:
https://developers.google.com/my-business/content/prereqs
After the setup and etc you will automatically understand the account id and location id.
i am providing the api that will help you to get the fetch the review
get account details:
https://mybusiness.googleapis.com/v4/accounts?access_token={access_token}
get location Id
https://mybusiness.googleapis.com/v4/accounts/{accountID}/locations?access_token={access_token}
get review
https://mybusiness.googleapis.com/v4/accounts/{accountID}/locations/{location_id}/reviews?access_token={access_token}
I need to implement Trust pilot reviews on my site.
I have integrated using script provided by Trust pilot.
But its working for common to site.
I want to identify for products details page. How can i integrate the Trust pilot reviews for dynamic page.
Can anyone please help me?
Thanks.
TrustPilot gives you a unique business unit id for each URL you have registered with them. You need to make separate calls to the server using the unique business unit id and the API key they provided to use it on different websites.
I am very new to Google API implementation. Need help regarding this.
My Requirement -
Showing purchased movie from play store in a single web page (php page) using google account
I have client id, secret key etc.
Let me know how to do it.
Firstly I need to login using gmail id. Then to show movie from it.
I have downloaded a google-auth-api from github. the example are not working properly
The Google Play Store does not appear to expose any API to determine what movies a user has purchased. The only purchases APIs I was able to find were specific to Android, and only work on in-app purchases for the current application.
We have an application, which sells "downloadable" products.
Scenario is:
Add product to our backend (powered on php and symfony)
Add product to apple store and wait when it will be approved
Sell it.
It works like a charm.
But I'd like to implement push notification, when new product is added to our store. The problem is that I don't know if the produc was approved and is available on Apple side.
It may confuse a user, when he sees the notification about 1 new product, but it is unavailable and the user doesn't even see it on application.
Is there a way to get approved and available product list from Apple?
Hey, try parsing emails, that you get from App Store when new product is approved. This will make all notification up to date and you won't miss any user
Jus implement on your server an module that fetches the apple product to see if it is there.
http://developer.apple.com/news/ios/archives/2010/january/
Drive Customers Directly to Your App on
the App Store with iTunes Links With
iTunes links you can provide your
customers with an easy way to access
your apps on the App Store directly
from your website or marketing
campaigns. Creating an iTunes link is
simple and can be made to direct
customers to either a single app, all
your apps, or to a specific app with
your company name specified.
To send customers to a specific
application:
http://itunes.com/apps/appname
To send
customers to a list of apps you have
on the App Store:
http://itunes.com/apps/developername
To send customers to a specific app
with your company name included in the
URL:
http://itunes.com/apps/developername/appname
For more details on creating iTunes
links, read: Creating easy-to-read
links to the App Store for your
applications and company.
Or Creating easy-to-read links to the App Store for your applications and company
I'm using the Amazon product advertising api to search for amazon products and displaying a link to the product if its found. How can I get credit for a sell that comes from my website? I signed up for the Amazon Associates program but everywhere I look it seems like you have to "generate" these links and keep track of them and thats not really feasible when my app can potentially generate thousands of buy links... So I know theres got to be something I'm missing here. Any help would be greatly appreciated!
You can check generated links on the US site and the UK site with their link checker tool. This will tell you if you get credit for purchases. It won't tell you if you get API credits.
The Product API is documented here - you should use the "DetailPageURL" response attribute for the URL.
You can build your own links like this, subbing in the correct values:
"http://www.amazon.co.uk/exec/obidos/ASIN/#{asin}/ref=nosim/#{uk_associate_id}"
Note - that URL is for the UK site. If you generate your own links, they won't count towards your API usage credit. See here for more details.
Hope that helps.
As you know, when you subscribe to the Amazon Product Advertising API program, you get an AssociateTag, and AccessKeyId and a secret key that is required to authenticate every request sent to Amazon.
So, when someone goes to your site, chooses an Amazon product (displayed on your site) and clicks on the "check out" link, you redirect that customer to Amazon site in order to let them handle the payment process. When the deal is done, Amazon knows that this sell came from your site (because the request to check out included your tag and key) and that's when you get some money from Amazon.
I hope this answers your problem.