Unable to login with wallet #1718
Unanswered
PolEpie
asked this question in
Developer Support
Replies: 4 comments 15 replies
-
And when i put core:// as url it open core but doesn't display nothing |
Beta Was this translation helpful? Give feedback.
0 replies
-
same, can help ? |
Beta Was this translation helpful? Give feedback.
0 replies
-
Great if you can add more debug info: SDK Version
|
Beta Was this translation helpful? Give feedback.
6 replies
-
@PolEpie thanks for reaching us. I made some tests and find the way how to make it work. Need to use rfc3986 to encode query params. extension CharacterSet {
static var rfc3986: CharacterSet {
return .alphanumerics.union(CharacterSet(charactersIn: "-._~"))
}
}
let encoded = uri.addingPercentEncoding(withAllowedCharacters: .rfc3986)!
let url = URL(string: "\(wallet.universal)/wc?uri=\(encoded)")! |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
hi, i've tried to tweak the dapp exemple to use rainbow or trust as wallet like this
but i got error when connecting even if the uri looks good
Beta Was this translation helpful? Give feedback.
All reactions