Hi Everyone,
I had done done tutor dev launch and got these links-
All services initialised.
The platform is now running and can be accessed at the following urls:
http://local.openedx.io:8000
http://studio.local.openedx.io:8001
http://meilisearch.local.openedx.io:7700
http://mobile.local.openedx.io:8321
http://apps.local.openedx.io:1999/authn
http://apps.local.openedx.io:2001/authoring
http://apps.local.openedx.io:1997/account
http://apps.local.openedx.io:1984/communications
http://apps.local.openedx.io:2002/discussions
http://apps.local.openedx.io:1994/gradebook
http://apps.local.openedx.io:1996/learner-dashboard
http://apps.local.openedx.io:2000/learning
http://apps.local.openedx.io:1993/ora-grading
http://apps.local.openedx.io:1995/profile
Working perfectly in web and in admin panel i had added application with name Android Mobile App with redirect url link as http://10.0.2.2:8000/api/mobile/v0.5/?app=android (as I want to run mobile app on my emulator in laptop).
When I run App it successfully gets build gets run also but when I go to discover page or click on register to go on register page I see an msg coming in ap as “something went wrong” like this -
this is how my config.yml file looks -
API_HOST_URL: ‘http://10.0.2.2:8000/’
APPLICATION_ID: ‘org.openedx.app’
ENVIRONMENT_DISPLAY_NAME: ‘Localhost’
URI_SCHEME: ‘’
FEEDBACK_EMAIL_ADDRESS: ‘support@example.com’
FAQ_URL: ‘’
OAUTH_CLIENT_ID: ‘3exampelL’
Keep empty to hide setting
AGREEMENT_URLS:
PRIVACY_POLICY_URL: ‘’
COOKIE_POLICY_URL: ‘’
DATA_SELL_CONSENT_URL: ‘’
TOS_URL: ‘’
EULA_URL: ‘’
SUPPORTED_LANGUAGES: #en is default language
DISCOVERY:
TYPE: ‘native’
WEBVIEW:
BASE_URL: ‘’
COURSE_DETAIL_TEMPLATE: ‘’
PROGRAM_DETAIL_TEMPLATE: ‘’
PROGRAM:
TYPE: ‘native’
WEBVIEW:
PROGRAM_URL: ‘’
PROGRAM_DETAIL_URL_TEMPLATE: ‘’
DASHBOARD:
TYPE: ‘native’
WEBVIEW:
DASHBOARD_URL: ‘’
FIREBASE:
ENABLED: true
ANALYTICS_SOURCE: ‘’ # segment | none
CLOUD_MESSAGING_ENABLED: true
PROJECT_NUMBER: ‘102140’
PROJECT_ID: ‘proj-test-aa018’
APPLICATION_ID: ‘1:1kfkc24eb0kdkdexampled’ #App ID field from the Firebase console or mobilesdk_app_id from the google-services.json file.
API_KEY: ‘AexampleBYGI’
SEGMENT_IO:
ENABLED: false
SEGMENT_IO_WRITE_KEY: ‘’
BRAZE:
ENABLED: false
PUSH_NOTIFICATIONS_ENABLED: false
GOOGLE:
ENABLED: true
CLIENT_ID: ‘1060-exampler.apps.googleusercontent.com’
MICROSOFT:
ENABLED: false
CLIENT_ID: ‘’
PACKAGE_SIGNATURE: ‘’
FACEBOOK:
ENABLED: false
FACEBOOK_APP_ID: ‘’
CLIENT_TOKEN: ‘’
BRANCH:
ENABLED: false
KEY: ‘’
URI_SCHEME: ‘’
HOST: ‘’
ALTERNATE_HOST: ‘’
#Platform names
PLATFORM_NAME: “OpenEdX”
PLATFORM_FULL_NAME: “OpenEdX”
#App sourceSets dir
THEME_DIRECTORY: “openedx”
#tokenType enum accepts JWT and BEARER only
TOKEN_TYPE: “JWT”
#feature flag for activating What’s New feature
WHATS_NEW_ENABLED: true
#feature flag enable Social Login buttons
SOCIAL_AUTH_ENABLED: true
#Course navigation feature flags
COURSE_NESTED_LIST_ENABLED: true
COURSE_UNIT_PROGRESS_ENABLED: true
NEW_REGISTRATION_ENABLED: true
NEW_LOGIN_ENABLED: true
REGISTRATION_ENABLED: true
LOGIN_ENABLED: true
NEW_LOGISTRATION_ENABLED: true
ENABLE_MOBILE_REST_API: true
ENABLE_OAUTH2_PROVIDER: true
ENABLE_COMBINED_LOGIN_REGISTRATION: true
Can anyone help me with this?