Amazon web services 没有config.inc.php文件+;类别';MarketplaceWebService_Model_SubmitFeedRequest';找不到

Amazon web services 没有config.inc.php文件+;类别';MarketplaceWebService_Model_SubmitFeedRequest';找不到,amazon-web-services,amazon,amazon-mws,Amazon Web Services,Amazon,Amazon Mws,我下载了php的Feeds API部分客户端库,但没有config.inc.php文件。我甚至在其他api库中搜索配置文件。有人能指导我解决这个问题吗???为了解决这个问题,我创建了自己的config.inc.php文件,并包含了必要的凭证,并对SubmitFeedSample.php进行了必要的更改。但我收到“Class'MarketplaceWebService\u Model\u SubmitFeedRequest'notfound”错误。救命啊 config.inc.php有一个前导“.

我下载了php的Feeds API部分客户端库,但没有config.inc.php文件。我甚至在其他api库中搜索配置文件。有人能指导我解决这个问题吗???为了解决这个问题,我创建了自己的config.inc.php文件,并包含了必要的凭证,并对SubmitFeedSample.php进行了必要的更改。但我收到“Class'MarketplaceWebService\u Model\u SubmitFeedRequest'notfound”错误。救命啊

config.inc.php有一个前导“.”(.config.inc.php),它应该在Samples目录中。

Yes
config.inc.php
实际上是
.config.inc.php
并且它也是隐藏的。 对于
MarketplaceWebService\u Model\u SubmitFeedRequest
,您需要
包括
要求一次,如下所示

require_once 'FeedsAPIClass/src/MarketplaceWebService/Client.php';
require_once 'FeedsAPIClass/src/MarketplaceWebService/Model/SubmitFeedRequest.php';