React Native, sistema de login social nativo usando uma conta do Google

  • Primeiro passo clonar o repositório
    git clone [email protected]:r-santtos/Studying-about-Hooks.git

  • A próxima etapa é carregar node_modules
    yarn install

  • Agora vamos mudar as credenciais no modulo signIn ‘src/modules/signIn.tsx’

    let CLIENT_ID = 'Google Client ID';
    let REDIRECT_URI = 'https://auth.expo.io/@username/slug';

    // aqui você define o que precisa para pesquisar as informações de usuário
    let SCOPE = encodeURI('profile email');

  • Você também precisa modificar o arquivo app.json
    "scheme": "aqui vai o nome do seu app",

Documentação completa aqui


English

React Native, native social login system using a Google account

  • First step clone the repository
    git clone [email protected]:r-santtos/Studying-about-Hooks.git

  • The next step is to load node_modules
    yarn install

  • Now let’s change the credentials in the signIn module ‘src/modules/signIn.tsx’

    let CLIENT_ID = 'Google Client ID';
    let REDIRECT_URI = 'https://auth.expo.io/@username/slug';

    // here you define what you need to search for user information
    let SCOPE = encodeURI('profile email');

  • You also need to modify the app.json file
    "scheme": "here is the name of your app",

Full documentation here


GitHub

View Github