I'm writing an application to automate some operations (e.g. search) with my LinkedIn account. To use LinkedIn API I need to authorize using its OAuth 2.0 implementation.
I would like to make this process as much automated as possible and Resource Owner Password Credentials grant type seems perfect to me (as I only need to store my login/password in the app with no further UI interaction). However, as it is stated in an answer to similar question LinkedIn may not support this type of grant.
So, the questions are:
- Does LinkedIn API support OAuth 2.0 "Resource Owner Password Credentials" grant type?
- If it does, what steps I need to perform to use it?
- If it does not, what is the most automated (minimum user interaction with UI) way to authenticate to LinkedIn API?