-
-
Save rtcoms/11355116 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # Author : Emad Elsaid (https://github.com/blazeeboy) | |
| require 'linkedin' # gem install linkedin | |
| require 'json' | |
| # create an appliation then | |
| # get your api keys at https://www.linkedin.com/secure/developer | |
| config = { | |
| your_consumer_key: 'xxxxxxxxxxxxxxxx', | |
| your_consumer_secret: 'xxxxxxxxxxxxxxxx', | |
| oauth_user_token: 'xxxxxxxxxxxxxxxx', | |
| oauth_user_secret: 'xxxxxxxxxxxxxxxx' | |
| } | |
| client = LinkedIn::Client.new( | |
| config[:your_consumer_key], | |
| config[:your_consumer_secret] | |
| ) | |
| client.authorize_from_access( | |
| config[:oauth_user_token], | |
| config[:oauth_user_secret] | |
| ) | |
| client.add_share( | |
| comment: 'Good Morning', | |
| content: {'submitted-url' => 'http://www.github.com/blazeeboy' } | |
| ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment