Skip to content

Latest commit

 

History

History
29 lines (26 loc) · 891 Bytes

get_user_posts.md

File metadata and controls

29 lines (26 loc) · 891 Bytes

گرفتن آگهی‌های کاربر

GET USER
API Permissions GET_USER_POSTS
OAuth Permissions USER_POSTS_GET

با استفاده از access_token می توانید آگهی‌های کاربر احراز شده را دریافت کنید. کافیست رکوئست زیر را بزنید.

GET https://api.divar.ir/v1/open-platform/finder/user-posts
x-api-key: {{apikey}}
x-access-token: {{access_token}}

نمونه پاسخ نیز مانند زیر است.

{
  "posts": [
    {
      "token": "QVZ8LgaW",
      "title": "اجاره آپارتمان ۱۰۰ متری",
      "images": [
        "https://s100.divarcdn.com/static/photo/afra/post/5nR_yv4kKEISbwtjwcc0Q/474c536e-bd6d-491b-afrf-72bfar916022.jpg"
      ],
      "category": "apartment-rent"
    }
  ]
}