How to set OAuth realm in RestAssured
问题 I am using RestAssured library for automating NetSuite Restlets. This Restlets are using OAuth 1.0 for authentication. Apart from consumer key, consumer secret, access token and token secret, I need to set advanced fields like REALM. But I couldn't find any way to set that in RestAssured. RequestSpecification request = new RequestSpecBuilder() .addHeader("Content-Type", ContentType.JSON.toString()) .setBaseUri(url).build() .auth().oauth( netsuiteConfig.getNetsuiteConsumerKey(), netsuiteConfig