You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was running the "animal-kingdom" locally, as indicated here: "https://docs.blockstack.org/develop/zero_to_dapp_2.html".
The tutorial suggests to start the server with npm start, which seems to default to HTTP. Unfortunately, that causes me an error when I try to sign in to Blockstack.
I get a "Failed to fetch information about the app requesting authentication. Please contact the app maintainer to resolve the issue." message. The reason is that a request was blocked while trying to load mixed content:
Blocked loading mixed active content “http://localhost:3000/manifest.json”
Luckily the workaround is as easy as running HTTPS=true npm start. Maybe that part can be updated here, or in the documents.
Hello,
I was running the "animal-kingdom" locally, as indicated here: "https://docs.blockstack.org/develop/zero_to_dapp_2.html".
The tutorial suggests to start the server with
npm start, which seems to default to HTTP. Unfortunately, that causes me an error when I try to sign in to Blockstack.I get a "Failed to fetch information about the app requesting authentication. Please contact the app maintainer to resolve the issue." message. The reason is that a request was blocked while trying to load mixed content:
Luckily the workaround is as easy as running
HTTPS=true npm start. Maybe that part can be updated here, or in the documents.