![JAR search and dependency download from the Maven repository](/logo.png)
com.icoderman.woocommerce.oauth.SignatureMethod Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wc-api-java Show documentation
Show all versions of wc-api-java Show documentation
Java wrapper for WooCommerce REST API
package com.icoderman.woocommerce.oauth;
/**
* SignatureMethod class.
* Signs a OAuth base string, returning the OAuth signature value.
*/
public interface SignatureMethod {
/**
* Returns the signature
*
* @param baseString url-encoded string to sign
* @param apiSecret url-encoded api secret for your app
* @param tokenSecret url-encoded token secret (could be empty string)
* @return signature value
*/
String getSignature(String baseString, String apiSecret, String tokenSecret);
SignatureMethodType getSignatureMethodType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy