I'm currently new to programming and i'm studying odata4j I just want to ask how to use get and post method in ODATA 4J with basic authentication and x-csrf-token.
I searched in internet but all the possible code I tried is not working.
here's a code snippet I found.
public ODataClientRequest transform(ODataClientRequest request) {
if(request.getMethod().equals("GET")){
request = request.header("X-CSRF-Token", "Fetch");
return request;
}else{
request = request.header("X-CSRF-Token", this.xcsrfToken);
return request;
}
}
I tried to use this but I'm confused. How can I set the get method on request variable? Also, how can I set the url and basic authentication on it? Lastly, how can I execute it?
I'm using eclipse
To access the web service you just need to add the basic HTTP authentification to the configuration as follows:
I hope this helps you.