Questions tagged [uservoice]

Use this tag for questions about the UserVoice API.

UserVoice is a hosted software platform that provides hosted feedback, ideal collection, and support functionality for website. The UserVoice API exposes the core end-user and admin functionality of UserVoice to make it easy for you to build client applications or integrations with your own systems. It can be used with C#, Java, PHP, Python, and Ruby.

35 questions
4
votes
1 answer

How to create a site instance per subdomain

I would like to create a web platform where each customer get its own site like uservoice.com Example: Main website : uservoice.com Customer 1: cust1-subdomain.uservoice.com Customer 2 : cust2-subdomain.uservoice.com The objective is that the…
Steven Muhr
  • 3,339
  • 28
  • 46
4
votes
2 answers

Uservoice Javascript widget - How to popup feedback form automatically on page load

In an HTML page, how can I know when a externally loaded Javascript object is defined and ready for methods to be called on it? Problem specifics: I'm using the uservoice feedback web application including their Javascript widget and their SSO…
Tom
  • 14,041
  • 16
  • 64
  • 80
3
votes
2 answers

Load uservoice API on Click

Uservoice asks you to load async their widget on page load which the code looks like this: var uvOptions = {}; (function() { var uv = document.createElement('script'); uv.type = 'text/javascript'; uv.async = true; …
jQuerybeast
  • 14,130
  • 38
  • 118
  • 196
3
votes
1 answer

Upload images with Uservoice

I think I'm going to go with UserVoice for a free user voting service, because they are the only one I've found that offer an API (which is a requirement for me, because I need to be able to create a custom UI). But it looks like the user can't…
Dingredient
  • 2,191
  • 22
  • 47
2
votes
0 answers

feedback sent callback uservoice

I want to do some custom action once feedback or any info is submitted using UserVoice Widget. Is there a callback event available for the same? Also, I intend to use multiple UserVoice widgets in single page. It doesn't seem to work somehow. I…
Empty
  • 350
  • 2
  • 4
  • 22
2
votes
1 answer

PHP extension oauth missing error while trying to setup UserVoice PHP SDK

I am trying to setup the UserVoice PHP SDK in my local machine using Composer. I am following the manual specified at https://developer.uservoice.com/docs/api/php-sdk/. I have both oauth and mcrypt php extensions enabled. The composer.js files…
anoop
  • 539
  • 4
  • 20
1
vote
2 answers

is there a way to sync the data entered into a customer feedback system to my site?

Hi I am a neeewwwb at anything programming related so I don't know if this will even make sense. My question is, is there a way to sync a customer feedback system (like User Voice or Getsatisfaction) to my site or to a database for my site? So…
JJ8
  • 11
  • 1
1
vote
1 answer

Program type already present: com.google.gdata.util.common.base.Preconditions

I am trying to integrate https://github.com/uservoice/uservoice-android-sdk/ and get the error: Program type already present: com.google.gdata.util.common.base.Preconditions I am trying to exclude that dependency, but not sure which module it's…
bschandramohan
  • 1,968
  • 5
  • 27
  • 52
1
vote
0 answers

uservoice - How to resolve Exceeded API Limit?

I am stuck. I get the exception Exceeded API Limit when I try to get data from user voice. But sometimes it does work. How can I fix it? I have m.getValue() as the id of the forum and m.getkey() as id of the suggestions loop (array of id…
YetDev
  • 123
  • 4
1
vote
0 answers

Accessing response headers using NodeJS

I'm having a problem right now which I can't seem to find a solution to. I'm using Uservoice's NodeJS framework to send some requests to UserVoice regarding Feedback posts. A problem I've run into are ratelimits so I want to save the header values…
LW001
  • 2,452
  • 6
  • 27
  • 36
1
vote
2 answers

Embed a UserVoice widget in an add-in in Excel for Windows

(* I clean up the initial thread *) I want to add the UserVoice widget to one Excel add-in. I have made the following example code:
SoftTimur
  • 5,630
  • 38
  • 140
  • 292
1
vote
0 answers

How to do 2-legged OAuth2 authentication using httr

I am currently implmenting OAuth authentication from R to UserVoice. I am using httr package to do regular OAuth2 authentication. It works well, but I need to go and enter my credentials in browser to get the token. I can cache the token and use it…
Sergei
  • 1,617
  • 15
  • 31
1
vote
1 answer

Integrate userVoice SDK with meteor

I have userVoice.js Meteor.startup(function() { // Include the UserVoice JavaScript SDK (only needed once on a page) UserVoice=window.UserVoice||[];(function(){var…
416serg
  • 348
  • 2
  • 17
1
vote
2 answers

Android Studio using the UserVoice Java SDK

I just created a new project in Android Studio and want to add the UserVoice Java SDK as a dependency. I'm adding the line compile 'com.uservoice:uservoice-java:0.0.2' to the app build.gradle file in the dependencies block. When I try to build it…
1
vote
0 answers

Uservoice Widget for Rails 3 App

I'm having trouble displaying the Uservoice widget on my page. I copied the javascript code from the Uservoice admin, converted it to HAML then pasted on to my app: layouts/_uservoice.html.haml :javascript (function(){ var…
Oleg De Leon
  • 33
  • 1
  • 4
1
2 3