There is no specific builder method for access_token - for more
flexibility, there's a general-purpose parameters(Parameter...)
method. You can use it like this:
BatchRequest postRequest = new BatchRequestBuilder("me/feed")
.method("POST")
.body(Parameter.with("message", "Testing!"))
.parameters(Parameter.with("access_token", "XXX"),
Parameter.with("something","else"))
.build();
HTH
Mark