When using the DropboxOAuth2Helper.GetAuthorizeUri - we pass in the following params:
var response = DropboxOAuth2Helper.GetAuthorizeUri(OAuthResponseType.Code, ClientId, redirectUrl, state);
Where the redirectUrl is a link similar to the following:
https://my-site.domain.com:443/rest-of/the/url/auth-complete
However the response that comes from it doesn't include the '443' and that seems to be causing issues when trying to authenticate.
Ie. response is as follows (example):
https://www.dropbox.com/oauth2/authorize?response_type=code&client_id=y7c53f1wctrfmw8&redirect_uri=https://my-site.domain.com/rest-of/the/url/auth-complete&state=MxuufKLcqtGRLQLDNgaYnsvowunHhvfnpoKZKEIvamanPmwvIMTMoqhDBpjH
WBsddOiTEeDvfoEPgfEzolugXskJnzcOpQyoMtmRkkhqbCqmsaIizwQpBzvSeEsJbjMPXfZapCnvUIKfgToizDMnbxRPhzPXnYpUUOjFYhphBDHduROpUusecDHIRJSnYipvtrlQITt
Does anyone know what could be causing this? Is this an inherent part of how this function should work?