-
Notifications
You must be signed in to change notification settings - Fork 204
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(oob): support fetching shortened invitation urls #840
feat(oob): support fetching shortened invitation urls #840
Conversation
Signed-off-by: Patrick Kenyon <[email protected]>
Signed-off-by: Patrick Kenyon <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: Patrick Kenyon <[email protected]>
Signed-off-by: Patrick Kenyon <[email protected]>
Signed-off-by: Patrick Kenyon <[email protected]>
Signed-off-by: Patrick Kenyon <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
…et reconnect Signed-off-by: Patrick Kenyon <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
I've added this to the Agenda for the WG call today, would be great if one of you @KolbyRKunz @JamesKEbert could attend! |
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
After testing the trinsic shortener we found that if short url leads to a deep link fetch does not automatically follow the redirect and the workflow is at intended in the RFC, we added a statement that checks whether we followed the redirect or not and grabs the encrypted URL according to redirect status. This was a small change but also has us follow the RFC more closely. Additionally we have noted that the trinsic shortener doe not follow the rfc in that if you supply the |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is great. Left some nits on the naming / structure of the code, but the contents look good and look forward to merging this PR!
packages/core/src/modules/connections/messages/ConnectionInvitationMessage.ts
Outdated
Show resolved
Hide resolved
packages/core/src/modules/connections/messages/ConnectionInvitationMessage.ts
Outdated
Show resolved
Hide resolved
packages/core/src/modules/oob/__tests__/OutOfBandInvitation.test.ts
Outdated
Show resolved
Hide resolved
Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
…ated receiveINvitationFromUrl to use the short url compatiable method Signed-off-by: KolbyRKunz <[email protected]>
Signed-off-by: KolbyRKunz <[email protected]>
@TimoGlastra The receiveInvitationFromUrl has been updated and the node version changed to greater than ^2.0. If there is not anything else I think this is ready to be merged. |
packages/core/src/modules/connections/messages/ConnectionInvitationMessage.ts
Outdated
Show resolved
Hide resolved
comments have been resolved
Signed-off-by: KolbyRKunz <[email protected]>
Adds support for attempting to parse a URL as a shortened URL after failing to parse a URL normally, This follows the most recent changes to the
out-of-band
rfc with the known caveats involved.