fburl.cr Build Status

fburl is a Twurl clone for Facebook.

Features

similar

dialect

Installation

Static Binary is ready for x86_64 linux

Compile from source / Use as Crystal library

Usage

config

% fburl config init
% vi ~/.fburlrc     # set access_token

using http

% fburl /v2.10/me      # perform the GET request
% fburl /v2.10/me -D - # dump header like cURL

using curl

aka. dryrun

% fburl /v2.10/me -n      # print curl command 
% fburl /v2.10/me -n | sh # run it

Roadmap

v1.0.0

Contributing

  1. Fork it ( https://github.com/maiha/fburl.cr/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors