Invalid Github token

0
I am trying to build an app using Native app builder and followed the instructions in the mendix documentation to generate github and app center tokens(https://docs.mendix.com/howto8/mobile/how-to-devapps). I am working behind a corporate proxy network so the builder is not recognizing them and marks them invalid (attaching screenshot below). When i bypassed the proxy server for testing purpose, it immediately recognized the token. Is there any way to configure proxy for native app builder as it is not picking up system proxy settings to go to the internet. using Mendix Studio Pro version 8.17.0  
asked
1 answers
0

You may try configuring proxy in the project settings. See details on proxy in documentation
https://docs.mendix.com/refguide/custom-settings#10-proxy-settings

Probably it will be something like adding additional JVM parameters to specify proxy host and port address like this

http.proxyHost=http://yourproxy.com
​​​​​​​http.proxyPort=80

See the server settings in configuration tab of project settings. 
https://docs.mendix.com/refguide/configuration

Also check this post on configuring Mendix proxy settings
http://www.robertprice.co.uk/robblog/using-a-proxy-server-from-the-mendix-modeller/

answered