2017 © Pedro Peláez
 

library php-upwork

PHP bindings for Upwork API

image

upwork/php-upwork

PHP bindings for Upwork API

  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 27 Forks
  • 1 Open issues
  • 12 Versions
  • 8 % Grown

The README.md

PHP bindings for Upwork API (OAuth1)

License Latest Stable Version Package version Build status Monthly downloads, (*1)

Introduction

This project provides a set of resources of Upwork API from http://developers.upwork.com based on OAuth 1.0a., (*2)

Features

These are the supported API resources:, (*3)

  • My Info
  • Custom Payments
  • Hiring
  • Job and Freelancer Profile
  • Search Jobs and Freelancers
  • Organization
  • Messages
  • Time and Financial Reporting
  • Metadata
  • Snapshot
  • Team
  • Work Diary
  • Activities

License

Copyright 2015 Upwork Corporation. All Rights Reserved., (*4)

php-upwork is licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at, (*5)

http://www.apache.org/licenses/LICENSE-2.0, (*6)

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License., (*7)

SLA

The usage of this API is ruled by the Terms of Use at:, (*8)

https://developers.upwork.com/api-tos.html

Application Integration

To integrate this library you need to have:, (*9)

  • PHP >= 5.3.0
  • OAuth Extension installed (optional), we recommend using official pecl extension, but in case you want to use your own library, you need to drop line 'ext-oauth' from composer json, or do not use composer, which is also optional. In that case, you need to setup the 'authType' parameter in your configuration options. The source contains an oauth-php library that can be used as alternative. See more in the AuthTypes directory if you want to create an authentication layer for your own client library.
  • Composer installed (optional)

Example

In addition to this, a full example is available in the example directory. This includes console.php that gets an access token and requests the data for applications that are not web-based, and web.php for web-based applications. You can also find the console-own-auth-lib.php file to use your own php client together with this Upwork library., (*10)

There is also a composer.json included to use with Composer., (*11)

Composer

In order to easily integrate with your application we recommend using Composer to install the dependencies., (*12)

Below is a simple example of the composer.json file you can use:, (*13)

{
    "name": "upwork/my-oauth-app",
    "require": {
        "upwork/php-upwork": "dev-master"
    }
}

Installation using Composer

1. Add upwork/php-upwork to your composer.json, simple example:, (*14)

{
    "name": "my/my-oauth-app",
    "require": {
        "upwork/php-upwork": "v1.1.0" // note: the latest release is recommended
    }
}

2. run the following command /usr/local/bin/composer.phar update, (*15)

the output should look similar to, (*16)

Loading composer repositories with package information
Updating dependencies (including require-dev)
  - Installing upwork/php-upwork (v1.1.0)
    Downloading: 100%         

Writing lock file
Generating autoload files

3. IMPORTANT: The library supports different OAuth clients, by default it requires PECL PHP extension (see more at http://www.php.net/oauth). Make sure it is installed. In case you don't want to use it, or you don't have the possibility to install it, you can use a preloaded php library, called oauth-php (read more in vendor-src/README)., (*17)

copy vendor/upwork/php-upwork/example/console.php to the myapp.php if you have ext-oauth installed, (*18)

or, (*19)

copy vendor/upwork/php-upwork/example/console-own-auth-lib.php to myapp.php if you want to use preloaded php library as OAuth client, (*20)

otherwise, (*21)

  • check vendor/upwork/php-upwork/src/Upwork/API/AuthTypes/ and create your own wrapper for OAuth
  • copy vendor/upwork/php-upwork/example/console-own-auth-lib.php to myapp.php
  • after that update 'authType' property in the configuration section of myapp.php and specify the name of your handler.

NOTE: use web.php example if you are creating a web-based application., (*22)

4. open myapp.php and type the consumerKey and consumerSecret that you previously got from the API Center. That's all. Run your app as php myapp.php and have fun., (*23)

Installation by downloading sources

1. Download latest release from https://github.com/upwork/php-upwork/releases, let's say it is https://github.com/upwork/php-upwork/archive/v1.1.0.tar.gz, and extract it to vendor/upwork folder, located in the root directory of your application., (*24)

2. Create vendor/autoload.php, a possible simple variant could be:, (*25)

require_once __DIR__ . '/upwork/php-upwork-1.1.0/src/Upwork/API/constants.php';

spl_autoload_register('UpworkVendorAutoloader');

function UpworkVendorAutoloader($_class)
{
    $path = __DIR__ . '/upwork/php-upwork-1.1.0/src/' . str_replace('\\', '/', $_class) . '.php';
    include_once $path;
}

3. open myapp.php and type the consumerKey and consumerSecret that you previously got from the API Center., (*26)

That's all. Run your app as php myapp.php and have fun., (*27)

The Versions

24/07 2018

v1.4.0.x-dev

1.4.0.9999999-dev http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

24/05 2018

dev-master

9999999-dev http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

24/05 2018

v1.2.5.x-dev

1.2.5.9999999-dev http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

24/05 2018

v1.3.0

1.3.0.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

15/02 2017

v1.2.3

1.2.3.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

15/02 2017

v1.2.4

1.2.4.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

26/08 2016

v1.2.2

1.2.2.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

08/07 2016

v1.2.1

1.2.1.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

13/06 2016

v1.2.0

1.2.0.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

12/10 2015

v1.1.0

1.1.0.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

05/05 2015

v1.0.0

1.0.0.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork

05/05 2015

v1.0.1

1.0.1.0 http://www.upwork.com

PHP bindings for Upwork API

  Sources   Download

Apache-2.0

The Requires

  • php >=5.3.3
  • ext-json *

 

The Development Requires

api php upwork