I tried adding
add_filter( ‘qs_cf7_api_get_args’ , ‘add_auth_headers’ );
add_filter( ‘qs_cf7_api_get_args’ , ‘add_auth_headers’ );
function add_auth_headers( $args ){
//for example
$args[‘headers’][‘Authorization’] = ‘Basic ASJKH23HKSS’ ;
}
But I am getting {“errorMessage”:”Authentication is required. Use Basic HTTP Authentication method with API Key as username and blank password.”}
I can keep password blank and use the API Secret as the Username, not sure what I am doing wrong here.