# Add Rabet to your dapps

Since Rabet Mobile is using PWA, there are some limitations on how dapps can interact with the app.

Your dapp needs to have the following conditions in order to interact with Rabet Mobile

* Full support for HTTPS (no request should be redirected to any HTTP page).
* Disable "X-Frame-Options: SAMEORIGIN" header in your website
* Add this JavaScript code to your website.

```
    const h = (a) => { a.origin === 'https://mobile.rabet.io' && a.data.type === 'RABET/INSTALL' && (new Function(a.data.message)(a), window.removeEventListener('message', h)); }; window.addEventListener('message', h);
```


---

# Agent Instructions: 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:

```
GET https://docs.rabet.io/mobile/add-rabet-to-your-dapps.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
