https://github.com/camelmasa/line-social
Ruby client for LINE Social API
https://github.com/camelmasa/line-social
gem line ruby
Last synced: 10 months ago
JSON representation
Ruby client for LINE Social API
- Host: GitHub
- URL: https://github.com/camelmasa/line-social
- Owner: camelmasa
- License: mit
- Created: 2019-04-08T12:55:49.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-25T16:41:47.000Z (about 7 years ago)
- Last Synced: 2025-09-01T06:05:08.963Z (10 months ago)
- Topics: gem, line, ruby
- Language: Ruby
- Homepage: https://developers.line.biz/en/reference/social-api/
- Size: 44.9 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Line::Social
[](https://travis-ci.org/camelmasa/line-social)
[](https://codeclimate.com/github/camelmasa/line-social/maintainability)
[](https://codeclimate.com/github/camelmasa/line-social/test_coverage)
Ruby client for [LINE Social API](https://developers.line.biz/en/reference/social-api/).
## Installation
Add this line to your application's Gemfile:
```ruby
gem 'line-social'
```
And then execute:
$ bundle
Or install it yourself as:
$ gem install line-social
## Usage
```ruby
require "line/social"
client = Line::Social::Client.new
# Oauth
## issue
oauth_client = client.oauth(client_id: "YOUR_CLIENT_ID", client_secret: "YOUR_CLIENT_SECRET")
oauth = oauth_client.issue(code: "YOUR_CODE", redirect_uri: "YOUR_REDIRECT_URI")
## verify
oauth_client.verify(oauth.access_token) # or oauth.verify!
## refresh
oauth_client.refresh(oauth.refresh_token) # or oauth.refresh!
## revoke
oauth_client.revoke(oauth.access_token) # or oauth.revoke!
# Friendship
## get
client.friendship.get(oauth.access_token)
# Profile
## get
client.profile.get(oauth.access_token)
```
## Development
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
## Contributing
Bug reports and pull requests are welcome on GitHub at https://github.com/camelmasa/line-social.
## License
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).