Destroyed Section WhatsApp (markdown)

Krzysiek Madejski 2019-09-19 18:12:46 +02:00
parent 718f67abbc
commit f7c54a9efb

@ -1,46 +0,0 @@
# What is the QR-code about?
The QR-Code is created by matterbridge on the terminal: It's the way Whatsapp authenticates any WA-Web session (which the bridge is using). At startup, matterbridge will prompt a QR-code for about 1 minute that you have to scan from your WA-instance (on your phone or android-VM). To scan it, go to Settings > Whatsapp Web in your WA client (if you run a VM, you may need to connect your webcam, or make a virtual one, see link above):
![](https://user-images.githubusercontent.com/8722846/64077252-ae3be180-ccce-11e9-812e-6e8a1e833346.png)
# How to set the WA-channel in the configuration file of matterbridge?
To setup a gateway between two protocols in matterbridge, you need to specify a channel for WA that should be bridged. The chat/group titles you see in WA won't work (e.g. from the screenshot above, "Test" won't work). Fortunately, matterbridge will complain about improper channel names and suggest the correct ones to you. In my case, it was a string of mainly numbers including the phone number of who created the group chat. Maybe there is a way to get this out of WA?
(Currently, the WA example config does not explain this at all; it doesn't even mention the gateway part.)
# How to set a nice channel name?
Use `tengo`:
Save below snippet as `myremotenickformat.tengo`
```
if channel == "48111222333-1549986983@g.us" {
result = "[CfP #Code for Pakistan] @"+nick
}
```
Add `RemoteNickFormat="{TENGO}"` to the specific bridge
and add the following in matterbridge.toml
```
[tengo]
RemoteNickFormat="myremotenickformat.tengo"
```
For context see: https://github.com/42wim/matterbridge/issues/725
# Is it possible to run WA on virtual Android VM?
You can follow these leads and update the wiki:
- https://github.com/tulir/mautrix-whatsapp/wiki/Android-VM-Setup
- KaiOs
- https://blog.whatsapp.com/10000649/WhatsApp-for-JioPhone-on-KaiOS?l=en
- KaiOS is a fork of FirefoxOS, thus basically a glorified browser and this app is most likely a HTML5 / Javascript application. Edit: https://ftp.mozilla.org/pub/labs/fxos-simulator/
https://developer.mozilla.org/en-US/docs/Archive/B2G_OS/Simulator
(Which is a plugin for Firefox)
# Contributors
- @JoKeyser
- @poVoq
- @42wim