Last active
July 13, 2026 22:10
-
-
Save mostafa-kianfard/dd878ccfe72c67f35bd86e28679aac4f to your computer and use it in GitHub Desktop.
digikala api for products and categories #digikala #api #php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| // install goutte package with composer | |
| use Goutte\Client; | |
| $Client = new Client(); | |
| // send request to digikala api for get product details | |
| $crawler = $Client->request('GET', "https://api.digikala.com/v1/product/6850997/"); | |
| $cat_products= json_decode($Client->getResponse()->getContent()); | |
| $arry_products=$cat_products->data->product; | |
| $arry_products->price; | |
| $arry_products->title; | |
| $arry_products->detail; | |
| $arry_products->description; | |
| $arry_products->star; | |
| $arry_products->seller; | |
| $arry_products->images; | |
| // برای توسعه اپلیکیشن و افزونه های همکاری در فروش دیجیکالا جهت دریافت خودکار محصولات با شماره واتس اپ 09101426030 در ارتباط باشید | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
من باهاش کار کردم اگه خواستی دیتا اسکرپ کنی!