Coursera exercises -Apigee API Development

Not applicable

Hi All - I’m trying to work thriough the exercises provided as part of the Coursera curriculum - the API reverse proxies a firebase URI but all GET calls from Postman seem to be returning a Google sign in page - any ideas how to resolve this ? Thanks

0 3 488
3 REPLIES 3

sidd-harth
Participant V

Hi @Ghulam Farooq Shaikh, this happens if your firebase collections doesn't have Read access.

Enable read access in firebase and you won't get the sign in page.

or

Maybe you are using a wrong URI/URL to access firebase.

I am having this same issue, but I have the public rules set on the db
{ "rules": { ".read": "auth == null", ".write": "auth == null" } }

Add .json at the end of your url. It is a Firebase requirement.