Replies: 2 comments 5 replies
|
I got a first draft - see commit |
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi Nate,
have you ever thought about supporting FileMaker Cloud? The process to obtain a token would be slightly different:
The first step would be to get the "AWS Cognito FileMaker Cloud UserPool id"
GET https://www.ifmcloud.com/endpoint/userpool/2.2.0.my.claris.com.jsonThe second step would be to get the token as showed in this gist
Then the authorization header would have to be set like this:
'Authorization FMID eyJ...'
instead of the base 64 encoded username:password
// special non-token auth to list databases requestMessage.Headers.Authorization = new AuthenticationHeaderValue("basic", Convert.ToBase64String( Encoding.UTF8.GetBytes($"{_userName}:{_password}")Awesome project, already learned a lot.
Greetings from Zurich
All reactions