Forum Discussion

Narender9878's avatar
Narender9878
Cover User
6 years ago

Needs to Get access code without prompt the login screen.

 I want to get access token without going to the login screen. When I send a CURL request to obtain access token I am redirected to myob login screen, how to skip that?

  • You need the user to login to their account via secure.myob.com to authenticate and retrieve the access code initially.  After that you can use the access token and refresh token without the user re-authenticating via the website.

  • I need to do the same, as I am trying to connect to MYOB via an Azure function.

     

    This is the code that MYOB have published - 

     

    var developerKey = "YOUR API KEY";
    var developerSecret = "YOUR API SECRET";
    
    var configuration = new ApiConfiguration(developerKey, developerSecret, "http://desktop");
    var oauthService = new OAuthService(configuration);
    var tokens = oauthService.GetTokens(OAuthLogin.GetAuthorizationCode(configuration)); 
    var keystore = new SimpleOAuthKeyService();keystore.OAuthResponse = tokens;
    
    // Get Company Files 
    var cfService = new CompanyFileService(configuration, null, keystore);
    var companyFiles = cfService.GetRange();

    The problem is the GetAuthorizationCode function as that function opens the MYOB login page and returns the authorization code via the HTML. 

     

    Surely there must be another way to generate the code? 

Looking for something else?

Search the Community Forum for answers or find your topic and get the conversation started!

Community home

Dig into MYOB Academy for free courses, learning paths and live events to help build your business with MYOB.