Sequencing.WeatherApp.Controllers.OAuth.AuthWorker.GetAuthUrl C# (CSharp) Method

GetAuthUrl() public method

Retrieves OAuth initial authorization url. Url on which browser should be redirected to.
public GetAuthUrl ( ) : string
return string
        public string GetAuthUrl()
        {
            return oAuthUrl + "?q=oauth2/authorize&redirect_uri=" + redirectUrl + "&response_type=code&state=123&client_id=" + appId + "&scope=test";
        }