Microservice to post a facebook marketplace house ad
Budget: $250 – $750 USD
A microservice to post a facebook marketplace house ad.
NOTE: You have to use the mobile version of facebook because it's the only version that allows titles to be set and it allows number of bathrooms to be zero. (The desktop version of facebook does not allow those.) It's likely that you'll need something like Selenium to make this work because facebook does not appear to have an API for doing it.
Essentially it needs to do what a user does when they create a new listing in facebook marketplace:
-> Create new listing
-> Homes for sale or rent
-> Add photos (add the photos) take files from urls (file:// and http:// https:// should work.)
-> Homes for sale or rent: string to set this
-> Title: string to set this
-> Property type: string to set this, the options are Apartment, House, Room Only, Townhouse
-> Bedrooms: number
-> Bathrooms: number
-> Property Adress: string
-> Property Description
-> Square feet: number
-> Laundry Type
-> Parking Type
-> Air conditioning type
-> Heating type
The post request with json would look something like this:
{ "photos": ["file://something", "https://something2" ],
...
"title": "1 acre property in california for sale",
...}
Note: it will need to be able to login properly for this to work.
Note: Post the ad as a draft without actually making it public so that it can be manually verified after creation.
NOTE: You have to use the mobile version of facebook because it's the only version that allows titles to be set and it allows number of bathrooms to be zero. (The desktop version of facebook does not allow those.) It's likely that you'll need something like Selenium to make this work because facebook does not appear to have an API for doing it.
Essentially it needs to do what a user does when they create a new listing in facebook marketplace:
-> Create new listing
-> Homes for sale or rent
-> Add photos (add the photos) take files from urls (file:// and http:// https:// should work.)
-> Homes for sale or rent: string to set this
-> Title: string to set this
-> Property type: string to set this, the options are Apartment, House, Room Only, Townhouse
-> Bedrooms: number
-> Bathrooms: number
-> Property Adress: string
-> Property Description
-> Square feet: number
-> Laundry Type
-> Parking Type
-> Air conditioning type
-> Heating type
The post request with json would look something like this:
{ "photos": ["file://something", "https://something2" ],
...
"title": "1 acre property in california for sale",
...}
Note: it will need to be able to login properly for this to work.
Note: Post the ad as a draft without actually making it public so that it can be manually verified after creation.