Social
Social account integration endpoints
Checks if a user has an existing Akifast account using their UID.
Business Logic:
Verifies if the provided UID exists in the
SocialAccountrecords for the 'akifast' provider.
CSRF token for write operations (POST, PUT, PATCH, DELETE). Required for security when using session authentication. Obtain token from cookie 'csrftoken' or meta tag in HTML.
abc123def456ghi789Session ID and CSRF token cookies.
Format: sessionid=<id>; osessionid=<id>; csrftoken=<token>
sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789The unique identifier for the Akifast social account. Validated against existing social accounts.
Account exists
No content
Invalid UID or account does not exist
No content
Completes the signup process for a social account.
Business Logic:
Handles the form submission for social account registration.
Creates the user account and links the social account.
CSRF token for write operations (POST, PUT, PATCH, DELETE). Required for security when using session authentication. Obtain token from cookie 'csrftoken' or meta tag in HTML.
abc123def456ghi789Session ID and CSRF token cookies.
Format: sessionid=<id>; osessionid=<id>; csrftoken=<token>
sessionid=abc123def456; osessionid=abc123def456; csrftoken=xyz789Successful signup (Ajax)
Redirects to the success URL (e.g., home page) upon successful signup (Standard).
Form validation error
Last updated
Was this helpful?

