简体   繁体   中英

How to determine which web service should be used alongside php to call the pastebin api?

I want to develop an app using the api provided by pastebin.com , using php . What I am not able to figure out is which web service like SOAP , etc , should be used to do this work ?

The documentation says to submit a POST request, which means this is a REST-ful HTTP interface. No SOAP, no WSDLs, just HTTP like web browsers work.

All you need is some code capable of sending HTTP requests.

In PHP, the simplest one that comes with most installs is the cURL library.

Example of sending a POST is in the second comment of the manual page:

http://www.php.net/manual/en/function.curl-exec.php

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM