mirror of
https://github.com/openflocon/Flocon.git
synced 2026-05-18 01:10:29 +00:00
Update README.md
This commit is contained in:
parent
84dc7e3a4d
commit
eeb2b1fa00
1 changed files with 23 additions and 0 deletions
23
README.md
23
README.md
|
|
@ -45,6 +45,10 @@ For each request, you can inspect:
|
|||
|
||||
This feature is invaluable for diagnosing backend issues, debugging unexpected API failures, and verifying request payloads and authentication headers.
|
||||
|
||||
```
|
||||
implementation("io.github.openflocon:flocon-okhttp-interceptor:$LAST_VERSION")
|
||||
```
|
||||
|
||||
```
|
||||
val okHttpClient = OkHttpClient()
|
||||
.newBuilder()
|
||||
|
|
@ -251,6 +255,25 @@ Flocon.deeplinks(
|
|||
|
||||
---
|
||||
|
||||
# Grpc
|
||||
|
||||
<img width="1207" height="774" alt="GRPC" src="https://github.com/user-attachments/assets/992541b3-3f61-4151-b6f5-0ed1b06ee7e4" />
|
||||
|
||||
Similar to network inteceptions, Flocon works with grpc
|
||||
|
||||
```
|
||||
implementation("io.github.openflocon:flocon-grpc-interceptor:$LAST_VERSION")
|
||||
```
|
||||
|
||||
```
|
||||
ManagedChannelBuilder
|
||||
...
|
||||
.intercept(
|
||||
FloconGrpcInterceptor()
|
||||
)
|
||||
.build()
|
||||
```
|
||||
|
||||
## 🧰 Requirements
|
||||
|
||||
- An Android device with USB debugging enabled
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue