I need to implement server-side validation for in-app purchases of my android application, in C# dotnet core platform which runs on linux.
I have read this page so many times and finally found about this issue which shows I'm not alone. It looks like Google currently does not directly support dotnet core fully.
Is there anyone who could achieve this using any third party library?
The issue you linked to is about users logging in via MVC.
If you want to use a service account:
GOOGLE_APPLICATION_CREDENTIALS
environment variable and use GoogleCredential.GetApplicationDefault
orGoogleCredential.FromFile
method (introduced in 1.29.0 of the client library support package)See more on this question at Stackoverflow