You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Search Facebook Marketplace listings by keyword and location.
1321
+
Search Facebook Marketplace listings by keyword and location.``location`` must be a Facebook location slug (``london``, ``newcastleupontyne``) or a numeric Facebook place id — the ``city_page_id`` on any listing is one. Human-readable names such as ``Durham, UK`` are rejected with a 400 rather than silently searching Facebook's San Francisco default.
* Search Facebook Marketplace listings by keyword and location.
2665
+
* Search Facebook Marketplace listings by keyword and location. ``location`` must be a Facebook location slug (``london``, ``newcastleupontyne``) or a numeric Facebook place id — the ``city_page_id`` on any listing is one. Human-readable names such as ``Durham, UK`` are rejected with a 400 rather than silently searching Facebook's San Francisco default.
2661
2666
* @param query Search keywords (required)
2662
-
* @param location Marketplace location slug (optional, default to nyc)
2667
+
* @param location Marketplace location slug or numeric place id (optional, default to nyc)
2663
2668
* @param minPrice (optional)
2664
2669
* @param maxPrice (optional)
2665
2670
* @param daysSinceListed (optional)
2666
2671
* @param sortBy (optional)
2667
2672
* @param itemCondition (optional)
2668
2673
* @param deliveryMethod (optional)
2674
+
* @param radius Search radius around the location (km, or miles in the US) (optional)
2669
2675
* @param after (optional)
2670
2676
* @return Object
2671
2677
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -2677,22 +2683,23 @@ private okhttp3.Call facebookSearchMarketplaceValidateBeforeCall(String query, S
* Search Facebook Marketplace listings by keyword and location.
2693
+
* Search Facebook Marketplace listings by keyword and location. ``location`` must be a Facebook location slug (``london``, ``newcastleupontyne``) or a numeric Facebook place id — the ``city_page_id`` on any listing is one. Human-readable names such as ``Durham, UK`` are rejected with a 400 rather than silently searching Facebook's San Francisco default.
2688
2694
* @param query Search keywords (required)
2689
-
* @param location Marketplace location slug (optional, default to nyc)
2695
+
* @param location Marketplace location slug or numeric place id (optional, default to nyc)
2690
2696
* @param minPrice (optional)
2691
2697
* @param maxPrice (optional)
2692
2698
* @param daysSinceListed (optional)
2693
2699
* @param sortBy (optional)
2694
2700
* @param itemCondition (optional)
2695
2701
* @param deliveryMethod (optional)
2702
+
* @param radius Search radius around the location (km, or miles in the US) (optional)
2696
2703
* @param after (optional)
2697
2704
* @return ApiResponse<Object>
2698
2705
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -2704,23 +2711,24 @@ public Object facebookSearchMarketplace(String query, String location, Integer m
* Search Facebook Marketplace listings by keyword and location.
2722
+
* Search Facebook Marketplace listings by keyword and location. ``location`` must be a Facebook location slug (``london``, ``newcastleupontyne``) or a numeric Facebook place id — the ``city_page_id`` on any listing is one. Human-readable names such as ``Durham, UK`` are rejected with a 400 rather than silently searching Facebook's San Francisco default.
2716
2723
* @param query Search keywords (required)
2717
-
* @param location Marketplace location slug (optional, default to nyc)
2724
+
* @param location Marketplace location slug or numeric place id (optional, default to nyc)
2718
2725
* @param minPrice (optional)
2719
2726
* @param maxPrice (optional)
2720
2727
* @param daysSinceListed (optional)
2721
2728
* @param sortBy (optional)
2722
2729
* @param itemCondition (optional)
2723
2730
* @param deliveryMethod (optional)
2731
+
* @param radius Search radius around the location (km, or miles in the US) (optional)
2724
2732
* @param after (optional)
2725
2733
* @param _callback The callback to be executed when the API call finishes
2726
2734
* @return The request call
@@ -2733,9 +2741,9 @@ public ApiResponse<Object> facebookSearchMarketplaceWithHttpInfo(String query, S
Copy file name to clipboardExpand all lines: src/test/java/com/scrapebadger/client/api/FacebookApiTest.java
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -300,7 +300,7 @@ public void facebookSearchGroupsTest() throws ApiException {
300
300
/**
301
301
* Search Marketplace
302
302
*
303
-
* Search Facebook Marketplace listings by keyword and location.
303
+
* Search Facebook Marketplace listings by keyword and location. ``location`` must be a Facebook location slug (``london``, ``newcastleupontyne``) or a numeric Facebook place id — the ``city_page_id`` on any listing is one. Human-readable names such as ``Durham, UK`` are rejected with a 400 rather than silently searching Facebook's San Francisco default.
304
304
*
305
305
* @throws ApiException if the Api call fails
306
306
*/
@@ -314,8 +314,9 @@ public void facebookSearchMarketplaceTest() throws ApiException {
0 commit comments