Already found solution,
Just need to use Request with meta
In parse() instead of
return item
do
yield Request(item['link_to_page'], meta={'item': item},
callback=self.parse_second)
then in prase_second() you can get item using
item = response.request.meta['item']