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 8603547
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T02:21:00+00:00 2026-06-12T02:21:00+00:00

I want to make POST request with custom header. I can’t find information how

  • 0

I want to make POST request with custom header. I can’t find information how to do this using AA Rest API – https://github.com/excilys/androidannotations/wiki/Rest%20API .

Should I use ClientHttpRequestInterceptor, which is used for authenticated requests?
https://github.com/excilys/androidannotations/wiki/Authenticated-Rest-Client

Thanks for any help!

  • 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-12T02:21:01+00:00Added an answer on June 12, 2026 at 2:21 am

    There is currently an open issue for this : https://github.com/excilys/androidannotations/issues/323

    For now, the only way to do this is with a custom ClientHttpRequestInterceptor. Here is a little example :

    @EBean
    public class CustomHeaderInterceptor implements ClientHttpRequestInterceptor {
    
        @Override
        public ClientHttpResponse intercept(HttpRequest request, byte[] data, ClientHttpRequestExecution execution) throws IOException {
            request.getHeaders().add("myHeader", "value");
            return execution.execute(request, data);
        }
    
    }
    

    Then, you need to link it to the restTemplate, like this :

    @EBean
    public class MyService {
    
        @RestService
        RestClient restClient;
    
        @Bean
        MobileParametersInterceptor mobileParametersInterceptor;
    
        @AfterInject
        public void init() {
            List<ClientHttpRequestInterceptor> interceptors = new ArrayList<ClientHttpRequestInterceptor>();
            interceptors.add(mobileParametersInterceptor);
            restClient.getRestTemplate().setInterceptors(interceptors);
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to make a HTTP Post request from C#. This request has a
as described in http://developers.facebook.com/docs/api#publishing i want to make a post request to update a
So I'm using this plugin: jquery-in-place-editor , I'm trying to make a POST request
I want to make a post request and i do like this: function Xxx_Click()
I want to make a POST request to a URL like this: http://localhost/resource?auth_token=1234 And
I want to make the time of each post to change in realTime. This
I want to make a form like this, and i want to post the
I want to refer to this post, because it might relate: Make Form Fields
I want to make a POST request to my Controller with jquery. function Send()
How can I make a post request to a different php page within a

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.