-
Notifications
You must be signed in to change notification settings - Fork 28
Unable to login to uport - rinkeby.infura.io - 403 #212
Comments
Where are you seeing this error? |
I'm trying to narrow down this issue, but you have not shared any details about your setup other than the error message, which is not actually coming from the app. It looks like there may be a problem with the website, or rather with one of the libraries you use on the website. In that case, it would be helpful to know which version of which library you are using. If you find that helpful, please close this issue. If not, share as many details as possible. |
Hi Mircea, I am using "uport-connect": "^0.7.3". The web application was working fine. I am facing this issue from past couple of days. I had simply used react-uport-box boiler plate codes, simply followed the instructions in the link(https://www.youtube.com/watch?v=h7J-SYUOqeA). I can see the same issue with Zug Digital Identity project as well(https://stadtzugid.zg.ch). The temporary fix for issue #294 didn't work as well. Also, I can't see my app in 'https://appmanager.uport.me/'(my web application was still working irrespective of that). I am now unable to create a new app in the app manager as well. I am surprised what changed suddenly. |
Thanks for sharing, that tutorial is very old and I'm not sure how much of it still applies. I'll have to go through it and through the react-uport-box to understand what it's doing. I suspect the core issue is the fact that infura discontinued their legacy API and the libraries involved were defaulting to that legacy API. |
I think something like this happened earlier as well. Kindly have a look at this issue. If I just change the network to Kovan, keeping everything as it is now, it works. |
Hello All.
|
OK, |
I am facing the same issue with Rinkeby when I am trying to create app using uPort app manager. Getting error "Project Id is required". |
Looks like the app manager sample code wasn't updated to reflect the new requirements. If you only use rinkeby, you can adapt the sample code in step 2 to something like this: Server app (uport-credentials)import { Credentials } from 'uport-credentials'
import { Resolver } from 'did-resolver'
import getResolver from 'ethr-did-resolver'
const providerConfig = { rpcUrl: 'https://rinkeby.infura.io/<YOUR INFURA PROJECT ID>' }
const credentials = new Credentials('<application Name>', {
privateKey: "<private Key>",
network: "rinkeby",
resolver: new Resolver(getResolver(providerConfig))
}) If you want to use multiple networks at the same time, you can use the multi-network providerConfig in ethr-did-resolver Another reference to follow is the uport-credentials config Client app (uport-connect)import { Connect } from 'uport-connect'
const uportConnect = new Connect('<application Name>', {
network: "rinkeby",
ethrConfig: {
rpcUrl: 'https://rinkeby.infura.io/v3/<YOUR INFURA PROJECT_ID>'
}
}) This is actually a workaround since the uport-connect library hasn't been updated to the latest requirements of providing a resolver. cc @gbugyis |
Looks like the infura service is down or disconnected. It seems this problem exists from a couple of days.
Response from rinkeby.infura.io - 403:
{"jsonrpc":"2.0","id":1,"error":{"code":-32600,"message":"project ID is required","data":{"reason":"project ID not provided","see":"https://infura.io/dashboard"}}}
The text was updated successfully, but these errors were encountered: