Michiel Post
Michiel Post
What kind of app are you building? UWP? Last time I checked my UWP Remote sample didn't run on my PC anymore. So I would need to fix that first...
This should initialize a RemoteHueClient without the web popup and authorization if you stored the accessToken object: ```cs IRemoteAuthenticationClient authClient = new RemoteAuthenticationClient(clientId, clientSecret, appId); AccessTokenResponse storedAccessToken = //TODO: Get...
Yes the idea is to cache the full `AccessTokenResponse` object. I think I see what you mean, the `GetHttpClient` is also called from all the other methods in the base...
You can use this code as a workaround to downoad files using the POST api: `var response = await _client.PostDownloadAsync("cat", default(CancellationToken), fileName);`
Yes, I totally agree. I would love to add MySky login. This app was created before MySky existed. It's written in C# and uses the Sia Skynet SDK that does...
Try using it inside the MetaMask app browser. It should work there.
The MetaMaskService.cs has a GenericRpc method. With this method you can send any command to the `ethereum` JavaScript object. It results in this JavaScript call: https://github.com/michielpost/MetaMask.Blazor/blob/72a0016c97a2a50b760c4f96aed214772e4e9a62/MetaMask.Blazor/wwwroot/metaMaskJsInterop.js#L169-L172 So yes it's possible....
Hi, I don't have a sample with parameters. Currently on holiday, so can't have a look now. Will try to create a sample later in August. On Thu, 21 Jul...
If you already have the encoded data, like in your example, you can do this: ```cs var result = await MetaMaskService.SendTransaction(ContractAddress, weiValue, "0xa9059cbb000000000000000000000000e4cc0b4dea52652458d31548643bb90b06af5fa00000000000000000000000000000000000000000000000000b1a2bc2ec50000"); ``` If you want to construct this...
Any progress on this? I want to use SkyID for SkyDocs. I tried to do it myself, but I can't use `genKeyPairFromSeed` from SkyDB. After a login I see the...