简体   繁体   中英

Ion Android getHeaders

How do I get a specific header using the Ion network library for Android?

This is what I'm trying:

...
.setCallback(new FutureCallback<Response<String>>() {
    @Override
    public void onCompleted(Exception e, Response<String> result) {
        System.out.println("header: " + result.getHeaders().message("mykey"));
    }
});

message(String) sets the HTTP response message. I should make that internal to avoid confusion.

Use

getHeaders().getHeaders().get(String)

It's a bit obtuse at the moment, will need to clean that API up in the next release.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM