Advertisement
ihenyen

Omoye-02

Jan 30th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.15 KB | None | 0 0
  1. $api_dev_key            = '359c2ef2efdf4ee196e1c92af7468efe'; // your api_developer_key
  2. $api_paste_code         = 'just some random text you :)'; // your paste text
  3. $api_paste_private      = '1'; // 0=public 1=unlisted 2=private
  4. $api_paste_name         = 'justmyfilename.php'; // name or title of your paste
  5. $api_paste_expire_date      = '10M';
  6. $api_paste_format       = 'php';
  7. $api_user_key           = ''; // if an invalid api_user_key or no key is used, the paste will be create as a guest
  8. $api_paste_name         = urlencode($api_paste_name);
  9. $api_paste_code         = urlencode($api_paste_code);
  10.  
  11.  
  12. $url                = 'http://pastebin.com/api/api_post.php';
  13. $ch                 = curl_init($url);
  14.  
  15. curl_setopt($ch, CURLOPT_POST, true);
  16. curl_setopt($ch, CURLOPT_POSTFIELDS, 'api_option=paste&api_user_key='.$api_user_key.'&api_paste_private='.$api_paste_private.'&api_paste_name='.$api_paste_name.'&api_paste_expire_date='.$api_paste_expire_date.'&api_paste_format='.$api_paste_format.'&api_dev_key='.$api_dev_key.'&api_paste_code='.$api_paste_code.'');
  17. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  18. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  19. curl_setopt($ch, CURLOPT_NOBODY, 0);
  20.  
  21. $response           = curl_exec($ch);
  22. echo $response;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement