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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T06:53:15+00:00 2026-05-28T06:53:15+00:00

I need make my method capable of accepting JSON data. Say I need to

  • 0

I need make my method capable of accepting JSON data. Say I need to make a GET REST method call with JSON data.

GET /player/login/ HTTP/1.0 

Content-Type: application/json
Request Body    
{
                "username": ”xyz”,
                "password": "234fsf34"
}

I am not getting how to take this JSON data within my REST API method.

@GET
@Path("player/login")
@Produces("application/json)
public responseData loginPlayer(){
}
  • 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-05-28T06:53:16+00:00Added an answer on May 28, 2026 at 6:53 am

    If you want to use authentication with a GET, the ‘proper’ way to do it is to use basic access authentication.

    http://en.wikipedia.org/wiki/Basic_access_authentication

    The client takes the username and password and forms a string of the form user:password. So in your example, that will be:

    "xyz:234fsf34"
    

    The client then base64 encodes this string. If the client is also Java, you could use the apache commons Base64 class for encoding/decoding:

    http://commons.apache.org/codec/apidocs/org/apache/commons/codec/binary/Base64.html

    So you get something like:

    "eHl6OjIzNGZzZjM0"
    

    And the client sends this in the GET, but as an HTTP Header (not Request Body):

    GET /player/login/ HTTP/1.0
      Content-Type: application/json
      Authorization: Basic eHl6OjIzNGZzZjM0
    

    The server reads this in the HTTP Header ‘Authorization’ much like the example code here:
    https://cwiki.apache.org/WINK/jax-rs-http-headers.html

    Then decodes it with the (Base64 apache commons class).

    Then you can respond to the GET with appropriate data.

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

Sidebar

Related Questions

I need to make some reflective method calls in Java. Those calls will include
I have method in a class that I need to make sure is only
So, I need to make a method within a class protected from re-definition. I
I need to make a drawCircle method that looks like public void drawCircle(int x,
I trying to make method to alter table. I've build data.db Created new group
I need to make some simple web service call from android. I know the
So, I need to make a method that would return a random string based
I need to make sure a method is not called giving a specific set
I need to make POST request to REST web-service with header params and form
I need to make a method that generates a binary (4 bytes long), receives

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.