Skip to main content
GET
/
v1
/
auth
/
oauth
/
microsoft
/
begin
Microsoft
curl --request GET \
  --url https://api.moonkey.fun/v1/auth/oauth/microsoft/begin \
  --header 'Authorization: Bearer <token>'
{
  "redirect_url": "https://login.microsoftonline.com/common/oauth2/v2.0/authorize?client_id=90f32a8e-4013-4627-b67c-d8f0db966931&redirect_uri=http%3A%2F%2Flocalhost%3A11019%2Fv1%2Fauth%2Foauth%2Fcallback%2Fapp_24ydphdixx2ydhF0E5WUFUKWNqi&response_type=code&scope=openid+email+profile&state=microsoft-F7j9hHnMeIWsHEHpwwgtDJ2T76TAEwmYHacp87uR7nJcbgltWST21zlMr1C5ORYp"
}

Authorizations

Authorization
string
header
required

Auth Platform API includes all the Auth related features. All Users, Phone Numbers, Emails, and OTPs are associated with an App as the container.

Endpoints only accept App's Secret API keys other than certain endpoints that are used client side or via SDK that accept the public_token.

Authentication using App Api Key

Header:

Authorization: Bearer {api_key}

Authenticated Request

curl \
-X GET https://api.moonkey.fun/v1/auth/users/user_24wFP9pDa9YiMJLun94iKykoZs2 \
-H "Authorization: Bearer sk_test_pRqweh3wvWmJAAVYv7Z0T5iPLzFM4ql0muoyQcjOxGeN3p1r"

Query Parameters

public_token
string
required

Required Public token of the App, public token can be exposed in the frontend and client side SDKs.

redirect
boolean

Optional Determines if the response should be a 302 auto redirect instead of returning the redirect_url in the json with a 200 status code.

login_redirect_url
string

Optional If an existing user is found, this URL will be used for redirect upon the completion of the OAuth flow

registration_redirect_url
string

Optional If a new user is created, this URL will be used for redirect upon the completion of the OAuth flow

Response

Microsoft response

redirect_url
string
required
Minimum string length: 1