Deeplinking to connect to Mobile Wallets using Wallet Connect - ethereum

I am trying to create a mobile application that can connect to mobile wallets (Metamask and TrustWallet) via the WalletConnect Protocol. For reference, what I am trying to achieve would be something like what opensea and rarible mobile apps are doing - if you click on the connect to metamask button the app will take you to the metamask app (via deeplink) and you can approve the connection from the wallet.
I can generate a uri using wallet connect that will work if you scan it via QR Code but when I try to use it as deeplink, it will take me to the metamask application but not open the "would you like to connect" pop up. Here's an example of the deeplink im using:
metamask://wc?uri=wc:87dc2f44-42ff-4206-81bf-f2685730759d#1?bridge=https%3A%2F%2Fp.bridge.walletconnect.org&key=bbd16a77194580dc2c4b8caf02fd5d269bf9c0efdb7fbf91673bc3a7eadf0c25.
Just wondering if anyone has accomplished this and can share some insights

Hi finally I solved using below link:
The bidge must be https://bridge.walletconnect.org
Session.Config(UUID.randomUUID().toString(), "https://bridge.walletconnect.org", key)
from wallet connect sample

Related

Making Yii2 as SSO server

I want to make a server of SSO which will be used as central of 4 others app to login and logout, and this is the first time i make app like this.
Lets say i have A B and C app which will ask SSO for session available.
I develop SSO using Yii2, and now i have made a route open for the other 4 apps to connect.
But the problem is, it doesn't give me any data.
I have tried provide Yii::$app->user->identity-> and session, but it doesn't work..
Can you give me suggestion, or anything about this?

Openshift nodejs app doesn't work for sending contact form to email

This works locally for me but each time I push to openshift and test, I get the same error message in the form:
"Message could not be delivered, please check your Internet connection!"
Which of course I added in Express when the mail server fails to send the content of the html form.
Is this a setting that I need to do in openshift in order for my nodejs app to have a working contact me page?
my website is:
http://nodejs-damasco.rhcloud.com/feedback
After some feedback from Redhat, I decided to give SendGrid a try and experiment. It was super easy to set up and emails arrive quick, plus they offer a free service.
Check it out here:
https://github.com/sendgrid/sendgrid-nodejs
I will pack the website once am done and share it as open source project in Github.

SkyDrive WinRT API Login programmatically

As the title says, I'm looking for a way to login to SkyDrive without having to show the UI to login not even once. The reason we're trying to do this is because we need to run some integration tests, and we need to login for that, but we can't add UI to those.
Thanks in advance.
I think Live Connect API doesn't provide a way to login via code-behind or via custom login panel. If you have access token then you can use REST APIs to get data like https://apis.live.net/v5.0/me?access_token=<Access-Token> will returns JSON response of id, first name, last name, profile link etc.
Possible ways sign in to Live
Creating a non-web-view-based sign-in screen for Microsoft SkyDrive
Using REST to Login user to Windows Live

Login in app using Web-Server

I am developing windows phone-8 app In this I need to register e-mail and password and after I have to login with registered user-name and password.I am using HttpWebRequest Class but don't know how it is possible please share with me any info or link regarding that.
You don't even need a separate web server running an auth service. Instead, you could use Windows Azure Mobile Services. There are several reasons for that, the main being the fact that you can easily manage outgoing data (register users) and check for existing data (authenticating users).
You can use the Azure Mobile Services client if you need an abstracted out data access layer.

Cloud Sync service for app

Hi I have an HTML5 app which has a User Login. The app has a Notes option. I am looking for a service which would help me to sync the notes for that user account. So the same user can login in a different device and see the Notes in their device. I cannot use iCloud as Android doesnt support it.
We tried to store the notes in the user db using jsonp but still had some issues.
Someone mentioned about Pusher.com but looks like the service is expensive for a starter like us. Is there any more reliable and cheap options for us? W
Parse is probably more in line with what you are looking for. Pusher provides a service for sending push notifications, but you mentioned the need to store data in the cloud. Parse can accomplish this and does have a free basic plan that you can get started with.