Is there a Google Play Movie API? - google-play

Trying to integrate Google Play's Movies and Series into http://www.BAGmovies.com, so our users can know which movies are for rent in Google Play
Is there a Google Play API for movies? I'm looking to
Make a call (e.g. with a Movie Title or Movie ID)
Get Availability / Price
Thanks!
Jaime

No, Google doesn't provide APIs for the features used in Google Play, Google Movie or Google Music apps. There are some inoffical Documentations/Libraries (reverse engineered), but I wouldn't recommend the usage of them. Especially not in a commercial background.

Yes, There is an API you can enable for Google Movies Anywhere. However, the API is for app integration, I'm not sure if you are trying to do web.
It's possible you do not need to use the API - an example intent for your first point:
Intent movie = new Intent(Intent.ACTION_VIEW, Uri.parse("https://play.google.com/store/movies/details?id=" + movieId));
startActivity(movie);

Related

Can you use the Google Photo API with the Google picker?

My understanding is that the Google Picker can be used to select "Picasa" photos and albums. However, since the Picasa API has now been shutdown, the ids returned by the picker are completely useless (at least as far as doing anything with the returned IDs goes).
There is a Google Photo API but I'm not aware of a Picker that returns IDs compatible with it.
So, does anyone know of a way to use the (very pretty and functional) Google Picker (technically for Picasa but still shows Google photo albums) with the Google Photos API?
Perhaps some way to exchange the Picasa IDs for new Google API ones?

Google play developer API - List all apps from my account

Following this guide https://developers.google.com/android-publisher/api-ref/ i am trying to find out if there is a way to list all games from my google play console but i can't find any. Is there a method to list all apps and package names from my account?
Thanks
Maybe this can help. https://stackoverflow.com/a/51984202
As a summary, there are no methods exist in official api. Instead you can use Google Play search functionality.
Alternatively you can also use https://github.com/facundoolano/google-play-scraper project.
For a cloud based solution there is a commercial api https://serpapi.com/google-play-api which has 100 query/month.

Uploading video to Youtube to a master account

I need to have people sending videos directly to my customer's Youtube account.
My customer doesn't want to have people login with their own Youtube account. This has to be transparent for people so they are not forced to have a Youtube account to send videos.
I found several solutions like Youtube Direct lite or the Youtube Widget but this is not exactly what they need as it force them to log to their own account... Same with Youtube API and OAuth2...
Is there any solution with the YouTube Data API v3 even if this is not really "best practice"
?
(I'm using PHP on Codeigniter)
Best regards.
I've just done a search on Google and found
http://tuts.stackarena.com/2013/03/uploading-videos-to-youtube-from-your-website-in-php/
It may also be worth checking out https://developers.google.com/youtube/ for additional resources, usually you find Google will have a solution for your needs.
Good luck

Google Plus API & photos?

As I understand, there's no official G+ API for getting photos from albums.
But I've figured out from here that Google Plus uses Picasa internally.
My questions are:
Is it possible to figure out only via G+ API Picasa userId?
If yes, how can I do it with G+ API if I only have the Google Plus page URL(something like this: https://plus.google.com/104560124403688998123 - or - https://plus.google.com/115999964287637644901) ?
Thanks in advance.
The link you "figured it out from" tells what you need to know. That first big number in the page URL is the UserID. From there you can call something like:
https://picasaweb.google.com/data/feed/api/user/115999964287637644901
and it will give you a list of the albums available. Drill down from there.
Downside? Sometime soon Google is no doubt going to change all this by implementing a real G+ API for photos.

Google Video API

I am building a training tool for a client. They require a secure streaming server. I want to use Google Video (as part of Google Apps for Business) but I cannot find any information about the API. Can anyone help?
I'd second that. I wanted to use Google Video for the same thing but found out there was no API.
I used flash video files (*.flv), apache mod_h264 and a flash player from http://flv-player.net/players/mini/
It seems that, unfortunately, there is no API fo Google Video for Business at the moment:
http://www.google.com/support/forum/p/apps-apis/thread?tid=0be88ad2ae25cae3&hl=en

Resources