googleapis / google-api-dotnet-client

Google APIs Client Library for .NET
https://developers.google.com/api-client-library/dotnet
Apache License 2.0
1.34k stars 526 forks source link

How to get status about the latest release with Google.Apis.AndroidPublisher.v3 #2382

Closed PhilipSA closed 1 year ago

PhilipSA commented 1 year ago

I am trying to use the API in order to get the status+version name about the last published app release in Google Play. Is this not supported? Edits.Tracks has the data i need but that is only for new releases you are trying to create and not existing ones.

Here is the code snippet i tried.

//List() here requires an edit ID
var apksRequest = service.Edits.Tracks.List("");
var apks = await apksRequest.ExecuteAsync();

Having to use a webscraper on the Google Play website is not an ideal solution.

jskeet commented 1 year ago

I'm afraid the maintainers of this repository don't know all the details of the hundreds of APIs represented here. We can help with issues about how to use the client libraries to execute requests, but we can't give advice about what is/isn't possible with individual APIs. I guess you might want service.Edits.Apks.List, but that's just a guess.

I'm going to close this issue now as I don't believe we'll be able to help you with it any further - but if you get to the stage where you know what API request you want to make, but are having a problem with the library, please add another comment and we can reopen the issue.

PhilipSA commented 1 year ago

It seems the API I was looking for simply does not exist at the moment and therefore my question is not relevant for this specific repo. I will post a feature request on the Google Issue Tracker instead