Hi, I'm facing this problem, I have a model called Post and I'm creating a new post in this way
def create
@post = Post.new(params[:post])
@post.save
end
so, if I want to give at the user the possibility to create a post from his website, what should I do? I need to create a sort of webservices? Thank you