Intent filter using path,pathPrefix, or pathPattern with aouth2 zoom Android

I am implementing the zoom OAuth un fluitter (Android), in which in the zoom settings I need to add a Redirect URL for OAuth in which is “http://misitio.online/web/callback” which resolves a link like this

http://misitio.online/web/callback?code=xxxxxxxxxxxxxxxxxxxxxx

And I make intent-filter in manifest A. scheme & host (It works but I do not want)

<intent-filter android:label="flutter_web_auth" >
   <action android:name="android.intent.action.VIEW" />
     <data android:scheme="http" android:host="misitio.online" android:pathPrefix ="/web/callback" />
     <category android:name="android.intent.category.DEFAULT" />
     <category android:name="android.intent.category.BROWSABLE" />
</intent-filter>

I tried

<data android:scheme="http://misitio.online/web/callback" /> (Don't work)
<data android:scheme="http" /> (Don't work)
<data android:scheme="http" android:host="misitio.online" android:pathPrefix ="/web/callback" />(Don't work)
<data android:scheme="http" android:host="misitio.online" android:path ="/web/callback" />(Don't work)