I have an app for android that uses GAE endpoints. This application is free but I have to make a paid version with some extra features. The problem is that two different applications and would not know how to connect a second application with the same endpoints. How can I create a second android project to share endpoints of the first application and can access the same API on the backend?

thanks

有帮助吗?

解决方案

You need to create a client id for your second app in your api console, in the same manner as your first app. Then in your endpoints backend code, modify your endpoint annotations to include the id for your second app in the audience and client ids list along with your first app

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top