Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8099123
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T22:18:05+00:00 2026-06-05T22:18:05+00:00

I am writing a WordPress plugin that uses WP_HTTP for making an API call.

  • 0

I am writing a WordPress plugin that uses WP_HTTP for making an API call.

The code is as below:

$request = new WP_Http;
$headers = array(
    'Content-Type: application/x-www-form-urlencoded', // required
    'accesskey: abcdefghijklmnopqrstuvwx', // required - replace with your own
    'outputtype: json' // optional - overrides the preferences in our API control page
);
$response = $request->request('https://api.abcd.com/clients/listmethods', array( 'sslverify' => false, 'headers' => $headers ));

But I am getting the response as “406 Not Acceptable”.

When I tried using cURL for the above request the request was successful.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-05T22:18:08+00:00Added an answer on June 5, 2026 at 10:18 pm

    The 406 error indicates the web service probably isn’t recognizing your Content-Type header, so it doesn’t know what format it’s responding to. Your $headers variable should be an associative array, like this:

    $headers = array(
      'Content-Type' => 'application/x-www-form-urlencoded', 
      'accesskey' => 'abcdefghijklmnopqrstuvwx',
      'outputtype' => 'json');
    

    or a string that looks like a raw header (including newlines), like this:

    $headers = "Content-Type: application/x-www-form-urlencoded \n 
      accesskey: abcdefghijklmnopqrstuvwx \n
      outputtype: json";
    

    The WP_Http class will convert a raw header string into an associative array, so you’re nominally better off just passing it an array in the first place.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm new to writing WordPress plugins. I'm trying to write a little plugin that
I am writing a wordpress plugin that redirects the user. for some reason, wp_redirect
thanks for reading! Here's what I'm up to. I'm writing a WordPress plugin that
I'm writing a plugin for Wordpress developers that allows a dev to include my
I am writing a plugin for routing the wordpress pages. So in that i
I'm writing my first Wordpress plugin and need to add a page that does
assuming that i'm writing a wordpress plugin. now i want its includes and include
I'm making a plugin that does a custom query on the WordPress database, and
I am writing a WordPress plugin that adds buttons to the tinymce editor in
I'm writing a Wordpress plugin that needs to tailor part of its output to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.