KO
|
EN
gitlite โ search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
surveymonkey-v3-api-php
โ 21
Open GitHub โ
SurveyMonkey v3 API Wrapper
Download README (.md)
Explore Similar Repositories
pandoc-tex2svg
:
Pandoc filter to convert math to SVG using MathJax-node's tex2svg
scratch-render-fonts
:
Fonts for Scratch SVG rendering
vue-template-compiler
:
No description available.
fibpy
:
๐ Fibonacci spiral sampling utilities
ConnectPageFields
:
Allows the connecting of two related Page fields so that changing one updates the other.
// repository documentation
Was this content helpful?
โ 0
(0 ratings)
Select Rating:
โ
โ
โ
โ
โ
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
surveymonkey-v3-api-php
?
Download (.md)
# SurveyMonkey API v3 Wrapper for PHP A simple SurveyMonkey API wrapper for version 3 of their API. # Requirements - PHP 5.5+ - Composer - http://www.getcomposer.org # Installation Add the following to your composer.json under require: "require": { "ghassani/surveymonkey-v3-api-php": "1.*" }, # Usage 1) Initiate a client with a long lived token: ``$client = new Spliced\SurveyMonkey\Client(MY_API_KEY, MY_API_TOKEN);`` 2) Make calls: ``$client->getSurveys([]);`` Check out ``src/Api/*Trait.php`` for exposed methods in the Client class. There are also some additional usage examples in the incomplete test suite. # OAuth Check out `authenticator/index.php` as an example of how to get a long lived token and authorize a user. You can also get a long lived token from your developer console if you are not requiring users to authenticate and just trying to work with your own account.