Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

behance/network_api_php

Folders and files

NameName
Last commit message
Last commit date

Latest commit

History

62 Commits

Repository files navigation

Behance API Logo

Behance Network API / PHP (5.2+)

Basic implementation to access User, Project, Work in Progress and Collection data

See http://be.net/dev for more information and documentation.

Authentication

Get an API key by registering your application here: http://be.net/dev/register

Install via Composer

{
 "require": {
 "behance/api-network": "~2.0.0"
 }
}

Usage

require_once( './vendor/autoload.php' );
$client = new Behance\Client( $client_id );
// User data
$client->getUser( 'bryan' );
// User's list of projects
$client->getUserProjects( 'bryan' );
// User's work in progress
$client->getUserWips( 'cfaydi' );
// Project data
$client->getProject( 2812719 );
// Project's comments
$client->getProjectComments( 2812719 );
// Featured project list
$client->searchProjects( array() );
// Search for motorcycles
$client->searchProjects( array( 'q' => 'motorcycles' ) );

Requirements

  1. Requires PHP 5.2+
  2. PHP cURL module

About

Basic implementation to access User, Project, Work in Progress and Collection data

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

Languages

AltStyle によって変換されたページ (->オリジナル) /