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)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

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

Okay