user1645668
user1645668

Reputation: 11

Posting a blog entry with RealStudio (REALbasic)

I want to write a utility in RealStudio that will post a blog entry to a blog server... If that makes sense.

Has anyone done this before and is willing to give an example of what they did?

Upvotes: 1

Views: 110

Answers (2)

scott
scott

Reputation: 56

As the oldest answer says, you will need to know the API the server uses (for the blog). Then you will need to read/write to the API using the HTTPSocket.

Is there a reason you are writing a new application to post to a blog? There are many tools out there.

Upvotes: 2

Paul Lefebvre
Paul Lefebvre

Reputation: 6406

You'll need to know the API that is used to post to the server. Check out HTTPSocket and the Post method for one way to communicate with web servers.

Upvotes: 2

Related Questions