How is the oauth_signature created?

Iā€™m trying to replicate the oauth_signature that postman generates from java, with the OAuth 1.0 authentication method and the HMAC-SHA256 signature method, but it always generates different results even though I use the same data, so Iā€™m thinking something is missing. wrong in the order I encode the key, so can someone explain to me step by step how the postman generates the oauth signature? How is the base chain assembled? What is the encoding order?

Instead of looking how Postman does it, I would recommend viewing the general OAuth 1.0 flow.

For example.

Basics of OAuth 1.0 (opengenus.org)

Then check your API to ensure that it follows that standard.

OAuth 1 is much more constrained that OAuth 2.0 which has a lot more options to consider.