Snack Expo Login Error - react-native

I've been using Snack Expo for some time now, but I can't login with my profile. I have created an expo profile and I can login with it in Expo (website and xde). However, when I try logging in to Snack, I get "Error: cannot log in".

Surprisingly, the problem was the browser. I was using Microsoft Edge and getting the error. When I tried logging in using another browser (Chrome), everything worked fine!
It also gives an error on Firefox.

Related

Facebook Login Error: "Module XDMConfig has not been defined"

I am getting error "Module XDMConfig has not been defined" on implementing facebook login in Google Chrome, in firefox it is working fine.
How to identify and correct this issue?
Switching from the debug version to the production version solved this problem for me.

Publishing React Native application using expo

I am trying to publish my application on iphone using expo client. When I send the link from my mackbook to iphone. I got an error saying "There was a problem loading the requested app. It looks like you may be using the LAN URL. make sure your device is on the same network as the server or try using a tunnel." I am on the same network. I checked the network twice. These are the steps that I followed 1) I started the application by giving the command in terminal window saying "npm start". 2) I choose the option "s" and then I was prompted to enter my iphone #. I entered the phone number and as soon as I did that, I got the text message on my phone saying "exp://10.21... . I clicked on this link and started getting the error message "There was a problem loading the requested app. It looks like you may be using the LAN URL. make sure your device is on the same network as the server or try using a tunnel." When I choose the option i. Option"i" is to run the application on emulator. I can successfully run the application on emulator, but when I send the link to my iphone, it does not work.
any help will be greatly appreciated.
I downloaded expo xde and that compiled my project and send the permanent link to my iphone and android and it worked well. Directly doing npm start does not send the right link because of some tunneling issues.I downloaed expo XDE from this link:
Expo XDE

vscode react native exponent: how to login into my exponent account

I am trying to launch a debug session for my react-native app inside vscode (I have setup a debug configuration in the ./vscode/launch.json file which has been working fine until a few days).
I start the debug session from the debug dropdown and I select the "expo" configuration:
The output window shows that the debug session starts:
And it just stucks there...
But on the bottom-right corner, I get this message:
I thinks the debugger waits me to connect to this account. I cant seem to know how to connect to this account from within vscode. I can access all available commands from the react-native rools: no login prompt.
Has any one faced this problem? Is this something new with the exponent extension in vscode (I remember a few days ago, this problem was not there...)
Any suggestion would be really welcomed.
Go to terminal and log in expo using this command
exp login
Install (globally) exp
npm install -g exp
and then use
exp login
as mentioned above and enter your expo.io credentials
Now, in 2020 we use expo login to login and expo logout to logout

React Native Remote Debugger shows cached bundles in Chrome

When I'm trying to use Remote JS Debugging in Google Chrome shows Cached Bundles. See the image below.
Remote Debugger UI Screenshot:
On my emulator its not connecting to remote debugger.
Android Emulator Screenshot
Is there anyone who encountered this problem?
I'm using React Native Version 0.47.
Thanks in advance.
If you use Chrome, clear cache from browser and reload app from react native. This fix my issue :)
Get rid of that final forward slash and it should kick you to the normal debug window. I'm running 64.0.3282.186 version of Chrome and this works for me. However, I know someone who says they get force redirected to the address with the forward slash, so I hope you're not in that boat.
To fix the error, you need to clear your cache in chrome and it will work again.
Close the packager and install the app again. This worked for me.

Uncaught error : "Can't use asyncStorage in unsigned experience" in expo when user is offline

I am new to react-native, and built a standalone application using expo, i want to test a specific case where user is offline, but as soon as i open standalone app, it says Uncaught error : can't user asyncStorage in unsigned experience without opening the app.
My understanding is that this screen is from expo app, because generally expo will fetch the js bundle from server, and when user is offline expo won't be able to fetch anything, now i want to remove that error.
Please let me know how can i resolve this error.
Restarting Expo XDE and clearing device cache on android (not clear all data) seems fix this problem for me.