I'm new to Ruby...
Trying to write a method that accepts username and password string.
# My method
def getRepos(username, password)
github = Github.new do |config|
config.basic_auth = '#{username}:#{password}'
end
github.repos.list :org => 'MyOrg'
end
# My Call
repos_json = getRepos("jstew","spankyDooLittle")
# My Response:
Github::Error::Unauthorized: GET
https://api.github.com/orgs/BbMobs/repos: 401 Bad credentials
FYI, when I put the credentials directly into the method it works. I
have tried with and without quotes...any suggestions?
on 2012-12-02 00:56
Please log in before posting. Registration is free and takes only a minute.
Existing account
(Switch to SSL-encrypted connection)
NEW: Do you have a Google/GoogleMail or Yahoo account? No registration required!
Log in with Google account | Log in with Yahoo account
Log in with Google account | Log in with Yahoo account
No account? Register here.