# Mine negative Douban reviews for studio feedback

**Use case:** 

Collect full-text Douban reviews with sentiment tags for The Wandering Earth to surface critical feedback themes for a studio feedback loop.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://movie.douban.com/subject/26266893/"
    }
  ],
  "scrapeSubjectInfo": true,
  "scrapeShortComments": true,
  "scrapeLongReviews": true,
  "maxCommentsPerSubject": 200,
  "maxReviewsPerSubject": 50,
  "fetchFullReviewText": true,
  "tagSentiment": true,
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "RESIDENTIAL"
    ]
  },
  "maxConcurrency": 2
}
```

## Output

```json
{
  "record_type": {
    "label": "Record type",
    "format": "string"
  },
  "subject_title": {
    "label": "Subject title",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "author": {
    "label": "Author",
    "format": "string"
  },
  "author_url": {
    "label": "Author URL",
    "format": "string"
  },
  "rating_stars": {
    "label": "Rating (stars)",
    "format": "integer"
  },
  "sentiment": {
    "label": "Sentiment",
    "format": "string"
  },
  "content": {
    "label": "Content",
    "format": "string"
  },
  "content_truncated": {
    "label": "Content truncated",
    "format": "boolean"
  },
  "useful_count": {
    "label": "Useful count",
    "format": "integer"
  },
  "created_at": {
    "label": "Created at",
    "format": "string"
  },
  "source_url": {
    "label": "Source URL",
    "format": "string"
  }
}
```

## About this Actor

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