I make a mobile application on the react native expo, and I need to log in via Google, Expo has a special function Expo.Google.logInAsync (options), through it I get

{ type: 'success', accessToken, idToken, refreshToken, {...profileInformation} } 

Now, how do I feed this token to my REST API (Spring Boot)

    0