Skip to content

Instantly share code, notes, and snippets.

View mergulhao's full-sized avatar

Sylvestre Mergulhão mergulhao

View GitHub Profile
class Linkedin
include HTTParty
base_uri 'https://api.linkedin.com/v2'
def initialize(token)
@token = token
end
def me
self.class.get('/me', options)