c# - I have some example code but i do not understand the parameters -
i found example code login linkedin ,but not understand consumer_key , consumer_secret
/*consumer settings linkedin*/ private string _consumerkey = "consumer_kay"; private string _consumersecret = "consumer_secret"; public enum method { get, post, put, delete }; public const string user_agent = "mozilla/5.0 (windows nt 6.1; wow64; rv:5.0) gecko/20100101 firefox/5.0"; public const string request_token = "https://api.linkedin.com/uas/oauth/requesttoken"; public const string authorize = "https://api.linkedin.com/uas/oauth/authorize"; public const string access_token = "https://api.linkedin.com/uas/oauth/accesstoken"; public const string callback = "liconnect://success"; please tell me can find these values.
thank you
these values supplied linkedin when sign using api. part of oauth authentication being used, providing secure means of authenticating user.
it explained on developer pages.
Comments
Post a Comment