Hey, I'm having trouble logging in to Medplum usin...
# general
r
Hey, I'm having trouble logging in to Medplum using the SDK, has anything changed about it since yesterday (last time it worked for me)? I'm getting a "404 not found" OperationOutcome from https://api.medplum.com/auth/me Getting a token from https://api.medplum.com/oauth2/token appears to be working fine. I've tried creating a new client for our project, but getting the same error
c
Hi @Raghavan - there have not been any intentional changes to the /auth/me endpoint, but there were changes in related modules. Are you calling /auth/me as a human user (i.e.,
Practitioner
or
Patient
) or a machine-to-machine user (i.e.,
ClientApplication
)?
r
machine-to-machine
using the startClientLogin function from MedplumClient
oh sorry it wasn't a "404 not found" operationoutcome, but similar:
Copy code
{
  "resourceType": "OperationOutcome",
  "id": "not-found",
  "issue": [
    {
      "severity": "error",
      "code": "not-found",
      "details": {
        "text": "Not found"
      }
    }
  ]
}
c
Ok... i found a repro case... investigating...
r
thanks!
c
Fix identified, push should be live in ~15 min. Sincerest apologies
r
Np, thanks for getting back
c
Fix is live and verified
182 Views