Skip to content

Instantly share code, notes, and snippets.

@ArunGupta25
Created June 13, 2012 19:44
Show Gist options
  • Save ArunGupta25/2926034 to your computer and use it in GitHub Desktop.
Save ArunGupta25/2926034 to your computer and use it in GitHub Desktop.
Hello from /share!
<br/>
<% if @photo %>
<%= image_tag @photo.image.url %>
<h2>Post to Facebook!</h2>
<%= form_tag('https://graph.facebook.com/me/feed', :remote => true, :authenticity_token => current_user.fb_token) do %>
<div class="field">
<%= hidden_field_tag 'picture', @photo.image.url %>
</div>
<div class="field">
<%= text_area_tag(:message) %>
</div>
</br>
<div id="postButton" class="actions">
<%= submit_tag %>
</div>
<% end %>
<% else %>
Something went wrong. There's no photo!
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment