From 47ec84ca07ff1f9789a3dc6c64822640bf0cc152 Mon Sep 17 00:00:00 2001 From: lpm0073 Date: Tue, 8 Nov 2022 18:44:38 -0600 Subject: [PATCH] documentation --- README.rst | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.rst b/README.rst index 0153875..738bba4 100644 --- a/README.rst +++ b/README.rst @@ -69,7 +69,14 @@ Subclass oauth2_wordpress.wp_oauth.WPOpenEdxOAuth2, and configure for your Wordp # note: no slash at the end of the base url. Python Social Auth # might clean this up for you, but i'm not 100% certain of that. + # + # the following will create an authorization url of https://stepwisemath.ai/wp-json/moserver/authorize BASE_URL = "https://stepwisemath.ai" + PATH = "wp-json/moserver" + AUTHORIZATION_ENDPOINT = "authorize" + TOKEN_ENDPOINT = "token" + USERINFO_ENDPOINT = "resource" + 3. configure your Open edX lms application ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~