# Douban Long Film Reviews Scraper - Full Text

**Use case:** 

Scrape full-text Douban long reviews with title, author, rating, date, useful and useless votes and reply count. Export to CSV, JSON or Excel.

## Input

```json
{
  "mode": "reviews",
  "collection": "top250",
  "searchQueries": [
    "科幻"
  ],
  "startUrls": [
    {
      "url": "https://movie.douban.com/subject/1292052/"
    }
  ],
  "tag": "",
  "city": "beijing",
  "maxItems": 100,
  "includeDetails": true,
  "includeCast": true,
  "includeAwards": true,
  "maxPerSubject": 100,
  "detailConcurrency": 4,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  }
}
```

## Output

```json
{
  "subjectTitle": {
    "label": "Title"
  },
  "title": {
    "label": "Review headline"
  },
  "authorName": {
    "label": "Author"
  },
  "rating": {
    "label": "Stars"
  },
  "date": {
    "label": "Posted"
  },
  "usefulVotes": {
    "label": "Useful"
  },
  "uselessVotes": {
    "label": "Not useful"
  },
  "replyCount": {
    "label": "Replies"
  },
  "content": {
    "label": "Review"
  },
  "reviewUrl": {
    "label": "Review URL"
  }
}
```

## About this Actor

This example demonstrates how to use [Douban Scraper - Movies, TV, Books, Music & Reviews](https://apify.com/scrapesage/douban-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapesage/douban-scraper) to learn more, explore other use cases, and run it yourself.