我用Laravel 4创建了一个我想测试的 API,所以我正在使用postman。当我输入我的用户名、密码和 URL 时:
http://127.0.0.1/stores/public/locator/api/service/v1/store
一个弹出窗口显示并告诉我输入 localhost:80 的用户名和密码。我该如何解决这个问题?
这是路线:
Route::resource('store', 'StoreController');
Route::filter('Apiauth', function()
{
return Auth::basic("username");
);
Route::group(array('prefix' => 'locator/api/service/v1', 'before'=> 'Apiauth'), function()
{
Route::resource('store', 'StoreController');
});