我正在开发一个Rest API并使用Behat和mink-selenium2-driver进行测试(这是第一次).出于安全考虑,每个调用都需要在请求标头中包含一个apikey.
我的问题是,我无法设置标题.我的测试看起来像这样:
Given I add "X_ApiKey" header equal to "test"
When I send a GET request to "/notice"
Then the response status code should be 200
Run Code Online (Sandbox Code Playgroud)
但我一直得到403.
有解决方案吗