我正在使用python的请求库从noaa的co-ops api中检索潮汐信息并继续收到错误403禁止响应。我在pythonanywhere上使用python 2.7,如果这有所不同。这是我的代码:
namespace AppBundle\Entity;
use Doctrine\ORM\EntityRepository;
class ProductRepository extends EntityRepository
{
public function test()
{
return 'hello';
}
}