1. Go to this page and download the library: Download dragu/wkop library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
dragu / wkop example snippets
use Wkop\Factory;
$client = Factory::get('APP KEY', 'SECRET KEY');
$client->setUserCredentials('USER LOGIN', 'USER ACCOUNT KEY');
$client->logIn();
// Read resources
// Resource name, method parameters, api parameters
$results = $client->get('stream', ['index'], ['page' => 1]);
// Post to resources
// Resource name, method parameters, api parameters, post parameters
$result = $client->post('entries', ['add'], [], ['body' => "test"]);
use Wkop\Factory;
$url = Wkop\Helpers::Wkop\Helpers::getConnectUrl('REDIRECT URL', 'APP KEY', 'SECRET KEY');
$client = Factory::get('APP KEY', 'SECRET KEY');
/**
* User should be redirected to that link.
* He'll be asked to accept permissions and will be able to connect.
* After clicking connect, he will be redirected back to your application to the REDIRECT URL
* Handling Response is up to you.
* Official Wykop documentation about response format:
* http://www.wykop.pl/dla-programistow/dokumentacja/#info6_7_5
*
*
* In result you'll acquire two variables:
* User login
* User token (also called user key)
*/
// Here, get those variables.
// And use them:
$client->setUserCredentials('USER LOGIN', 'USER ACCOUNT KEY');
$client->logIn();
// From this moment, you will be able to make API calls as logged user.
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.