Post

Replies

Boosts

Views

Activity

Reply to "invalid_client" no matter what I do.
I opened up a TIC with Apple. To save other engineers some hassle, here's what was wrong:1. The "exp" and "iat" timestamps should be in epoch SECONDS, not epoch millis, which I was first using.2. The timestamps need to literally be a JSON number, as opposed to a string value.3. I had the wrong kidIn other words,{ "aud": "https://appleid.apple.com", "sub": "love.censio.Censio", "iss": "xxxxx", "exp": 1587239821, "iat": 1586635021 }
Apr ’20