Level 18
Shopify must check for a user agent set (likely to dissuade scrapers), since by default get_meta_tags does not include one you can set one and it will work.
ini_set('user_agent', 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10.7; rv:7.0.1) Gecko/20100101 Firefox/7.0.1');
$tags = get_meta_tags('https://www.someshopifysite.com');
dd($tags);