ueberauth_microsoft v0.3.0 Ueberauth.Strategy.Microsoft

Summary

Functions

Provides the credentials for the user

Provides the extra params for the user

Handles initial request for Microsoft authentication

Provides the info for the user

Provides the uid for the user

Functions

auth(conn)
credentials(conn)

Provides the credentials for the user.

This is one of the component functions that is used to construct the auth struct. What you return here will be in the auth struct at the credentials key.

Callback implementation for Ueberauth.Strategy.credentials/1.

default_options()
extra(conn)

Provides the extra params for the user.

This is one of the component functions that is used to construct the auth struct. What you return here will be in the auth struct at the extra key.

You would include any additional information within extra that does not fit in either info or credentials

Callback implementation for Ueberauth.Strategy.extra/1.

handle_request!(conn)

Handles initial request for Microsoft authentication.

info(conn)

Provides the info for the user.

This is one of the component functions that is used to construct the auth struct. What you return here will be in the auth struct at the info key.

Callback implementation for Ueberauth.Strategy.info/1.

uid(conn)

Provides the uid for the user.

This is one of the component functions that is used to construct the auth struct. What you return here will be in the auth struct at the uid key.

Callback implementation for Ueberauth.Strategy.uid/1.