· 7 years ago · Jan 22, 2018, 01:10 PM
1<?php
2
3/** @see TwitterAOauth */
4require_once 'twitteroauth/twitteroauth.php';
5
6$consumer_key = 'xxx';
7$consumer_secret = 'xxx';
8
9$oauth_token = 'xxx';
10$oauth_token_secret = 'xxx';
11
12$connection = new TwitterOAuth(
13 $consumer_key,
14 $consumer_secret,
15 $oauth_token,
16 $oauth_token_secret
17);
18
19// file
20$connection->oAuthRequestImage('account/update_profile_background_image',
21 array('image' => 'img.png'));
22
23// or
24
25// binary
26$connection->oAuthRequestImage('account/update_profile_background_image',
27 array('image' => file_get_contents('img.png')));