UserVoice SDK is now packaged in a C# library (library & the source). This document illustrates its usage with installation instructions and a few examples just to get you quickly started.
Install UserVoice library from NuGet
The UserVoice C# library can be installed using NuGet, the package manager. Go
to NuGet Gallery | UserVoice and follow
the instructions in Visual Studio and run this command in Package Manager Console.
1
Install-Package UserVoice
If you are using the NuGet.exe command line tool (in Mono, for exampe), simply run the following in your project:
1
NuGet.exe install UserVoice
Ready to go! Let’s see what we can do with this.
Creating a new API client
For creating a new API client you need to do a few things. First, get your API KEY and API SECRET from UserVoice Admin Console and pass them as parameters to the client like this:
Now we have an API client that we can use to connect Helpdesk API.
Post a new ticket
Making requests using the client follow the format client.Method(path, params). In the first example we post a new ticket, which is possible if you have the helpdesk service.
12345678910111213
// Post a new ticket to your helpdesk from sidson@example.comvarquestion=client.Post("/api/v1/tickets.json",new{email="sidson@example.com",ticket=new{state="open",subject="C# SDK",message="I'm wondering if you would have any OAuth example for C#?\n\n"+"Thanks,\n\nSidson"}})["ticket"];Console.WriteLine(string.Format("{0} posted ticket: {1}",question["contact"],question["url"]));// Prints: sidson posted ticket: http://.....
Post a suggestion using an access token
Acting on behalf of the user lets you leave out the email parameter from the previous example as well as access to user-requiring API calls. In the following example we post a new suggestion in your first forum. You need to have the feedback service for this example.
1234567891011121314151617
// Login as man.with.only.answers@example.com and retrieve an access tokenvaraccessToken=client.LoginAs("man.with.only.answers@example.com");// Get the first forum id for the example which accessToken has access tovarforumId=accessToken.GetCollection("/api/v1/forums?sort=newest",1)[0]["id"];// Post the suggestion using the access tokenvarsuggestion=accessToken.Post("/api/v1/forums/"+forumId+"/suggestions",new{suggestion=new{title="Color the left navbar to green"}})["suggestion"];varuser=accessToken.Get("/api/v1/users/current")["user"];Console.WriteLine(string.Format("{0} created suggestion: {1}",user["name"],suggestion["url"]));// Prints: Anonymous created suggestion: http://.....
Get the access token of the account owner and post responses
To respond to the ticket, you need to log in as an admin (or owner).
12345678910111213141516
// This logs in as the first owner of the accountvarowner=client.LoginAsOwner();varcontactName=(string)question["contact"].Value<string>("name");varposted_response=owner.Post("/api/v1/tickets/"+question["id"]+"/ticket_messages",new{ticket_message=new{text="Hi "+char.ToUpper(contactName[0])+contactName.Substring(1)+"!\n\n"+"We sure do! See the installation instructions and a few example API calls "+"here: http://developer.uservoice.com/docs/api/php-sdk\n\n"+"Best regards,\n\nRaimo Tuisku\nDeveloper"}})["ticket"];Console.WriteLine(string.Format("{0} posted response to: {1}",posted_response["messages"][0]["sender"]["name"],posted_response["url"]));// Prints: Raimo posted response to: http://.....·
Getting a list of suggestions
You maybe noticed the use of GetCollection when getting the first forum ID. Whenever you need to fetch paginated results (like all suggestions), you can use our lazy-loading collection.
12345678910
// Creates a lazy-loading collection object but makes no requests to the API yet.varsuggestions=client.GetCollection("/api/v1/suggestions?sort=newest");// Loads the first page (at most 100 records) of suggestions and reads the count.Console.WriteLine("Total suggestions: "+suggestions.Count);// Loops through all the suggestions and loads new pages as necessary.foreach(varsuggestioninsuggestions){Console.WriteLine(string.Format("{0}: {1}",suggestion["title"],suggestion["url"]));}
Log your users into your Widget using SSO
If your site has both authenticated users and the UserVoice Widget installed,
you should definitely pass the email of your logged-in user to the UserVoice
Widget so that users don’t have to type it again in your site.
Generating an SSO token should be done on the server side, as you should never
reveal your API SECRET to anyone. Here’s how you do it:
123456
stringcurrentSSOToken(){returnUserVoice.SSO.generateToken(SUBDOMAIN_NAME,SSO_KEY,new{email=CurrentUser().Email},300);// Leaving this out sets the expiry time to 5 minutes = 300 seconds.}
Now you can pass the SSO token to the UserVoice Widget JavaScript snippet. Make
sure the aforementioned method currentSSOToken() can be called from there.
That’s all! Now your users should be able to leave feedback and post tickets right away.
Associating your users with their UserVoice profiles
Connecting your users with their UserVoice profiles is possible by following a
procedure called 3-Legged OAuth. The steps required to do this are explained
below.
1. Provide a link or redirect user to /authorize from system X.
When you want to connect your current user to his or her UserVoice profile,
redirect the browser to the authorization url like this:
12
// Redirects user to the UserVoice authorization dialog.Response.Redirect(client.AuthorizeURL());
Providing a direct link is another way to do the trick:
2. User is asked to log in and give X permission to access information in UserVoice.
The authorization dialog will look like this:
3. UserVoice redirects user back to system X and passes an oauth verifier
UserVoice will pass a verification code back to your system, which you can use
to request an access token for the user, so you know which profile in
UserVoice is owned by your currently logged-in user.
12345678910111213141516171819
// Getting oauth verifier as a GET parametervarverifier=Request.QueryString("oauth_verifier").ToString();if(verifier.Length>0){try{// Get access token for the uservaraccessToken=client.LoginWithVerifier(verifier);// Persist the access token in the database for later usevaruser=CurrentUser();// CurrentUser() returns a persistable objectuser.UservoiceToken=accessToken.Token;user.UservoiceSecret=accessToken.Secret;user.Save();}catch(UserVoice.Unauthorizedua){// false/old verifier, present error}Response.Redirect("/");}
4. System X makes API calls to UserVoice using the access token.
Now whenever you need to, you can make calls on behalf of the user whom
you verified. Just use the access token you got in exchange for the verifier.
1234567891011
try{// Use the previously saved access token. Makes zero requests!varaccessToken=client.LoginWithAccessToken(CurrentUser().UservoiceToken,CurrentUser().UservoiceSecret);// Get current uservaruser=accessToken.Get("/api/v1/users/current.json")["user"];Console.WriteLine(user["email"]);// Prints: man.with.only.answers@example.com}catch(UserVoice.Unauthorizedua){// Tried to do something unauthorized}
Raimo Tuisku (twitter: @raimo_t)
Didn’t find what you’re looking for?
Check out the UserVoice Help Center for more documentation.