All photos uploaded from the rails app go to albums but are not shown on timeline.
I need every photo or album uploaded from rails app to be shown in TIMELINE of the PAGE.
Any help will be appreciated!
# fb code
@me = FbGraph::User.me(session[:fb_access_token])
@page = @me.accounts.detect do |p|
end
#=end
#=begin # fb page create new album
@page.album!(
:name => 'new',
:message => 'new the_message',
:description => 'new the_description'
)
#=end
#=begin # fb album uploads
@album = @page.albums.detect do |a|
end
@album.photo!(
:message => 'Upload Photo via URL'
)