-
Notifications
You must be signed in to change notification settings - Fork 154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AsanaClient : Cannot access child value on Newtonsoft.Json.Linq.JValue #103
Labels
Comments
Can you please submit a pr |
I never did a PR, wil try this week-end...
2017-08-10 11:07 GMT-04:00 Blake Niemyjski <notifications@github.com>:
… Can you please submit a pr
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#103 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALota4N89oAZkQgl2lHi8JBwWAfm660eks5sWxyxgaJpZM4OugE_>
.
|
Will be my first time!
2017-08-10 11:07 GMT-04:00 Blake Niemyjski <notifications@github.com>:
… Can you please submit a pr
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#103 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALota4N89oAZkQgl2lHi8JBwWAfm660eks5sWxyxgaJpZM4OugE_>
.
|
@zeuzere did you have any luck on fixing this issue? |
I know how to fix it,
Did not have the time to fix it yet...
I just put an image profil for now in Asana to make sure is not throwing
Exception...
Ps.
I love Oauth2, it just work...
Been able to inherit from GoogleClient give me the chance to add the
optionnal parameter access_type=offline that i needed, and it was easy to
set it up...
I will try soon to make a pull request, have no choice, since i need it
before i release my website ...
2017-10-06 19:08 GMT-04:00 Blake Niemyjski <notifications@github.com>:
… @zeuzere <https://github.com/zeuzere> did you have any luck on fixing
this issue?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#103 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ALota-D6UAZTG3QuwdZWUSiQvoDPLp9eks5sprLugaJpZM4OugE_>
.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Error in AsanaClient.cs
This error occure when you did not set a Profile Photo
Ligne 94-96 ... . response["data"]["photo"]["image_36x36"] ....
should be something like :
response["data"]["photo"].HasValue ? response["data"]["photo"]["image_36x36"].Value(): null;
I tested and it work...
If someone can make the modification...
Thanks
The text was updated successfully, but these errors were encountered: