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
On build&run I have a problem on those lines :
shortener.login = @"mylogin";
shortener.key = @"myAPIkey";
The messages are the next ones :
"request for member "login" is not in a structure or a union"
"request for member "key" is not in a structure or a union"
And if I try to resolve it by replacing the lines with :
shortener.credentials.login = @"mylogin";
shortener.credentials.key = @"myAPIkey";
I get this :
didFailWithStatusCode: 500
Do you have an idea that could help me?
Thanks a lot
The text was updated successfully, but these errors were encountered:
i had the same problem and tried the same as you above.
Just go back to the original commit, that which holds the credentials in the same implementation file. works fine.
thanks Stefan! neat bit of code.
Hello,
I'm having a trouble using your classes.
On build&run I have a problem on those lines :
shortener.login = @"mylogin";
shortener.key = @"myAPIkey";
The messages are the next ones :
"request for member "login" is not in a structure or a union"
"request for member "key" is not in a structure or a union"
And if I try to resolve it by replacing the lines with :
shortener.credentials.login = @"mylogin";
shortener.credentials.key = @"myAPIkey";
I get this :
didFailWithStatusCode: 500
Do you have an idea that could help me?
Thanks a lot
The text was updated successfully, but these errors were encountered: