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)

Billboard image

Create up to 10 Postgres Databases on Neon's free plan.

If you're starting a new project, Neon has got your databases covered. No credit cards. No trials. No getting in your way.

Try Neon for Free →

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay