All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.klaytn.caver.ipfs.IPFSOptions Maven / Gradle / Ivy

There is a newer version: 1.12.2-android
Show newest version
package com.klaytn.caver.ipfs;

import okhttp3.Credentials;

import java.util.HashMap;
import java.util.Map;

public class IPFSOptions {
    Map headers;

    public static IPFSOptions createOptions(String projectId, String projectSecret) {
        IPFSOptions options = new IPFSOptions();
        options.headers = new HashMap();

        options.headers.put("Authorization", Credentials.basic(projectId, projectSecret));
        return options;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy