我创建了 Shopware 应用程序。我想在 iframe 中展示我的应用程序。但总是显示“哎呀!你移动得太快了,失去了方向。”
这是我的 manifest.xml
<?xml version="1.0" encoding="UTF-8"?>
<manifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/platform/trunk/src/Core/Framework/App/Manifest/Schema/manifest-1.0.xsd">
<meta>
<name>TF</name>
<label>TF</label>
<label lang="de-DE">TF</label>
<author>TF</author>
<copyright></copyright>
<version>1.0.0</version>
<license>MIT</license>
</meta>
<setup>
<secret>test</secret>
<registrationUrl>https://example.com/shopware/register</registrationUrl>
</setup>
<permissions>
<read>order</read>
<read>product</read>
</permissions>
<admin>
<main-module source="https://example.com/app/shopware"/>
</admin>
</manifest>
我正在为我的网站使用 Laravel。我创建了类似的路线
Route::get('/app/shopware', 'ShopwareController@showApp');
我的功能是
public function showApp(Request $request)
{
echo 'Showing TF';
}
如果我直接访问此 URL,它工作正常,但在 Shopware 中显示这样的错误
如何解决这个问题?
谢谢