Before you can authenticate with a service, you need to set it up. Have a look at the Huginn <%= link_to 'wiki', 'https://github.com/cantino/huginn/wiki/Configuring-OAuth-applications', target: :_blank %> for guidance.

<%= link_to "Authenticate with Twitter", "/auth/twitter" %>

<%= link_to "Authenticate with 37Signals (Basecamp)", "/auth/37signals" %>

<%= link_to "Authenticate with Github", "/auth/github" %>


<% @services.each do |service| %> <% end %>
Provider Username Global?
<%= service.provider %> <%= service.name %> <%= service.global ? 'Yes' : 'No' %>
<% if service.global %> <%= link_to 'Make private', toggle_availability_service_path(service), method: :post, data: { confirm: 'Are you sure you want to remove access to your data on this service for other users?'}, class: "btn btn-default" %> <% else %> <%= link_to 'Make global', toggle_availability_service_path(service), method: :post, data: { confirm: 'Are you sure you want to grant every user on this system access to your data on this service?'}, class: "btn btn-default" %> <% end %> <%= link_to 'Delete', service_path(service), method: :delete, data: { confirm: 'Are you sure?' }, class: "btn btn-default btn-danger" %>
<%= paginate @services, :theme => 'twitter-bootstrap-3' %>