Items you want to sell on Facebook and Instagram are uploaded and managed using a catalog. For each catalog, a data feed should be provided in one of the supported formats (CSV, TSV, RSS XML, ATOM XML).
Note, to supplement or modify existing catalog data without modifying the raw, underlying data source, use a supplementary feed. Supplementary feeds can only update items in a catalog; they cannot create or delete items.
You can manually create a product catalog in the Commerce Manager, or programmatically. Upload or configure your products using the Product Feed API.
The product feed will be used as the source of truth for updating product catalogs on Facebook, and fetched by Facebook periodically according to the configured interval. You should store the product feed ID, and use it to get upload status, errors and to change upload schedule.
curl -X POST \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v24.0/<PRODUCT_CATALOG_ID>/product_feeds
| Attribute | Type | Required | Description |
|---|---|---|---|
|
| Required | |
| Required | The configuration for fetching a feed in a recurrent manner. See | |
|
| Optional | Default: Note, if value is set to When set to |
|
| Optional (Required for Supplementary Feeds) | See Product Feed documentation. |
|
| Optional (Required for Supplementary Feeds) | See Product Feed documentation. |
schedule objectRead the Product Feed Schedule specification for more details.
| Attribute | Type | Required | Description |
|---|---|---|---|
|
| Required | The location of the product feed to fetch. |
|
| Required | The interval at which the product feed gets fetched. |
|
| Optional | Hour of the day to fetch the product feed. |
Scheduled feeds do not support uploads more frequently than once per hour. If you need to update inventory faster, please use the Catalog Batch API.
{
"id": {PRODUCT_FEED_ID}
}Along with scheduled feed fetches, you can manually perform one-time uploads.
Example — Feed files hosted on a public location
curl -X POST \
-F 'url="<URL>"' \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v24.0/<PRODUCT_FEED_ID>/uploads
Example — Uploading feed files directly from the local machine. The path to the file needs to be changed according to your use case.
curl -X POST \
-F 'file=@catalog.csv;type=text/csv' \
-F 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v24.0/<PRODUCT_FEED_ID>/uploads
Optionally, you can set update_only to true. We create new items and update existing ones, but don't delete items from the feed. You only need to provide id to update existing items. This reduces time to fetch and process your file.
For example, to update only price and custom labels for 100 items in a feed, use direct upload. Provide a file with only id, price and custom_label_0 for those items and update_only set to true. We support all listed file formats; the most common ones are TSV and CSV. See Supported Feed Formats for more information.
If your feed file is hosted on a server with basic HTTP authentication, you have the option to send both username and password.
For more information, see:
| Feed Format | Use Case | Sample Feed |
|---|---|---|
CSV | Update | |
TSV | Reset |
Read the Product Feed Upload Errors documentation.
We recommend that you check catalog upload errors and warnings after each upload session. You can achieve this by going to the Diagnostics section of your Commerce Manager, or use the Feed API to request a sampling of errors and warnings. Start by first querying for recent upload sessions.
curl -X GET -G \
-d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v24.0/<PRODUCT_FEED_ID>/uploads
{
"data": [
{
"id": "{UPLOAD_SESSION_ID}}",
"start_time": "2019-07-15T12:38:36+0000",
"end_time": "2019-07-15T12:38:47+0000"
}
]
}Then, use the value returned in the id field to retrieve a sampling of errors and warnings.
curl -X GET -G \
-d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v24.0/<UPLOAD_SESSION_ID>/errors
A fatal severity here means the item cannot be ingested by Meta; a warning severity means the recommended attributes are missing or malformed. In the case of a warning, we will omit the problematic field and proceed with mutating the other fields.
{
"data": [
{
"id": 1510567479166488,
"summary": "A required field is missing: price.",
"description": "Products need to have prices to run in ads. Include a price for each product in your data feed file and upload it again. Prices must include cost and an ISO currency code (for example: 10 USD instead of $10 for American dollars).",
"severity": "fatal",
"samples": {
"data": [
{
"row_number": 2,
"retailer_id": "yj9bpbpub5t8t22kgbq6",
"id": "1677559492523068"
},
{
"row_number": 5,
"retailer_id": "ujn33tvbyv2vmdpo7ecb",
"id": "1529743440653137"
}
]
}
},
{
"id": 275241589314958,
"summary": "GTIN is incorrectly formatted",
"description": "Check that the GTIN (Global Trade Identification Number) for each of your products is in the correct format. Accepted types include UPC, EAN, JAN, and ISBN.",
"severity": "warning",
"samples": {
"data": [
{
"row_number": 4,
"retailer_id": "bxwb1pho9o43uxjxikcg",
"id": "538700559625644"
}
]
}
}
]
}Getting a sampling of errors and warnings is often sufficient to fix most Product Feed Upload issues. However, you may need the full list of errors to do deeper analysis. To download a full list of errors and warnings, you must first query the most recent upload session (see section above).
You can request the full error report to be generated for a given upload session ID.
curl -X POST \
-F 'access_token=<ACCESS_TOKEN>' https://graph.facebook.com/v24.0/<UPLOAD_SESSION_ID>/error_report
{
"success": true
}In case the report is not ready, repeat the last call after a few seconds. You can then download the report itself.
curl -X GET -G \
-d 'fields="error_report"' \
-d 'access_token=<ACCESS_TOKEN>' \
https://graph.facebook.com/v24.0/<UPLOAD_SESSION_ID>
{
"error_report": {
"report_status": "WRITE_FINISHED",
"file_handle": "{link-to-the-file-location}"
},
"id": "493476498092860"
}You should find a URL that you can download (e.g with wget, curl, etc.). The downloaded file will contain the full error report.
If you get the error: "Cannot access an object not managed by the business owning this app", please make sure that the app you're using belongs to the business (Business Settings > Account > Apps).