We have an integration that communicates with NetSuite and synchronizes certain data between two systems 24/7.
It currently uses token-based authentication (OAuth 1.0).
Is there any advantage to switching to OAuth 2.0?
We have not heard that the existing TBA is being deprecated any time soon.
We are able to calculate oath_signature on each request, so we don't have a resource issue like a mobile device might have.
On the other hand, we have a library available to handle the OAuth 2.0 token negotiation, so implementing this would not be difficult.
Any ideas on pros vs. cons of making the switch?