You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be super nice if the SDKs DropboxClient would also handle empty string values for the AccessToken and RefreshToken. The issue it creates is that the requirement of manual checking values before instantiating the class.
Make use the string.IsNullOrEmpty for the access token and refresh token arguments in the constructor instead of accessToken === null.
So to be something like this:
The text was updated successfully, but these errors were encountered:
Hi, I am trying to make this solution work for a website. I can make it work locally (localhost), but when I try to go to production in the server, the LoopbackHost = "http://127.0.0.1:52475/" does not work, as expected. Anyone knows how can I modify this entry so that it could run in a web host?
It would be super nice if the SDKs DropboxClient would also handle empty string values for the AccessToken and RefreshToken. The issue it creates is that the requirement of manual checking values before instantiating the class.
Make use the
string.IsNullOrEmpty
for the access token and refresh token arguments in the constructor instead ofaccessToken === null
.So to be something like this:
The text was updated successfully, but these errors were encountered: