Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- - List of performed redirects grouped by full urls without get parameters. Each returned redirect must be annotated by the number of unique records of redirects with full url, must contain a list of referrers of the redirect, and the date and time of the latest redirect.
- For example, you have 2 records in the database:
- ```txt
- id: 1
- redirect_full_url: https:/example.com/search/
- referrer_domain_name: site1.com
- created_at: 22-01-2020 18:00:00
- id: 2
- redirect_full_url: https:/example.com/search/
- referrer_domain_name: site2.com
- created_at: 22-01-2020 18:02:00
- Result must contain item like this one:
- json
- "redirect_full_url": "https:/example.com/search/",
- "redirects": 2,
- "referrers": ["site1.com", "site2.com"],
- "last_redirected": "22-01-2020 18:02:00"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement