Replies: 2 comments 5 replies
-
I got a first draft - see commit |
Beta Was this translation helpful? Give feedback.
3 replies
-
This has been implemented in #213. |
Beta Was this translation helpful? Give feedback.
2 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.json
The 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
Beta Was this translation helpful? Give feedback.
All reactions