> For the complete documentation index, see [llms.txt](https://docs-embed.anyflow.jp/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-embed.anyflow.jp/anyflow-sdk/docs/faq.md).

# よくあるご質問

#### npmを使っていないのですが、AnyflowSDKをどのように使用すればいいですか？ <a href="#npmwotteinainodesugaanyflowsdkwodonoyounisurebaiidesuka" id="npmwotteinainodesugaanyflowsdkwodonoyounisurebaiidesuka"></a>

htmlから直接組み込む場合は、`index.esm.js` をお使いください。

```html
<script type="module">
import { AnyflowSDK } from "./index.esm.js";
// このScriptタグ内ではAnyflowSDKのメソッドを記述可能
</script>
```

***

#### ブラウザのコンソールに「ポリシーによるエラー」が表示されます

エラーメッセージの例

{% code overflow="wrap" %}

```
Refused to frame 'https://wizard.anyflow.jp' because it violates Content Security Policy directive ...
```

{% endcode %}

上記の様なエラーメッセージがブラウザのコンソールに表示されている場合は、SDKを組み込むサイトに設定されている **Content Security Policy ヘッダー** が影響している可能性があります。

サーバーの設定を確認し、`*.anyflow.jp` を許可するようにしてください。

参考：

[CSP: frame-src - HTTP | MDN](https://developer.mozilla.org/ja/docs/Web/HTTP/Headers/Content-Security-Policy/frame-src)

[Content Security Policy: The page's settings blocked the loading of a resource: xyz - HTTP | MDN](https://developer.mozilla.org/ja/docs/Web/HTTP/CSP/Errors/CSPViolation)


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs-embed.anyflow.jp/anyflow-sdk/docs/faq.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
