Goodreads Developers discussion

190 views
questions > using goodreads api in c#

Comments Showing 1-2 of 2 (2 new)    post a comment »
dateUp arrow    newest »

message 1: by Raman (new)

Raman Kumar | 4 comments Hi,
I am trying to connect goodreads api's in c# with Dotnet
i am using oauth given in the link

http://deanhume.com/home/blogpost/a-s...


Everything works well upto access token

But how do we connect access token with any of the post method's of goodreads api's
I am trying to post review using goodreads api
do we have to add in header as access token?
URL: https://www.goodreads.com/review.xml
HTTP method: POST
Parameters:
book_id: Goodreads book_id (required)
review[review]: Text of the review (optional)
review[rating]: Rating (0-5) (optional, default is 0 (No rating))
review[read_at]: Date (YYYY-MM-DD format, e.g. 2008-02-01) (optional)
shelf: read|currently-reading|to-read| (optional, must exist, see: shelves.list)

Do you have any complete sample code in c#
all the links at http://oauth.net/code/ are worthless for goodreads.
KIndly suggest what should i do?


message 2: by Charles (new)

Charles Kim | 28 comments Hi Raman,

We don't have any sample code in C# for this process. If I understand correctly though, you already have retrieved the access token and now want to use it to sign the request header.

If so, the blog post you mentioned above looks like it may steer you in the right direction. Unfortunately, I don't know enough about .NET to offer more specific help.

Good luck!

Charles


back to top