DEV Community

Oscar Andres
Oscar Andres

Posted on

Answer: send POST request in PHP to pushbullet API 401 error

I know this is an old post but I was having the same problems with sendgrid that uses the same Authorization: Bearer APIKEY method as your website.

I finally got it to work using raw php post using the following code

$url = "your url";
$post_data = 'yourdata';

// Set

Top comments (0)