I want to connect to the Facebook API to authenticate users from my django rest app. I have got everything working locally but am running into trouble deploying. I first tried to deploy both the react front end and django backend to App Engine as two different services, however I could not get the frontend to talk to the backend. My proposed solution was to try and host the backend in compute engine. This works, but the FB API requires an ipv6 address but GCP only supports ipv4. I was reading that I could create a global load balancer and assign a static ipv6 address to that however I am not finding an example I can understand or follow. Is it even possible to do what I am thinking or does the load balancer only work on incoming traffic? Will the FB api still not recognize the ipv6 address? Is there a better proposed way to do this? I am afraid I will still run into this issue if I got the backend working in app engine. Any thoughts?
Thank you, Zach