User Agent
The UserAgent plugin provides functions to set the HTTP user-agent header. For more info about User-Agents, please see the HTTP User-Agent docs.
Requires Cordova plugin: cordova-useragent
. For more info, please see the User-Agent plugin docs.
联系我们?

If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic's experts offer official maintenance, support, and integration help.
Ionic User Agent插件的安装(Installation)
Ionic EE comes with fully supported and maintained plugins from the Ionic Team. Learn More or Contact Us
Ionic User Agent插件支持的平台(Supported Platforms)
- Android
- iOS
Ionic User Agent插件的用法(Usage)
import { UserAgent } from '@ionic-native/user-agent/ngx';
constructor(private userAgent: UserAgent) { }
...
this.userAgent.set('Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.103 Safari/537.36')
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));
* this.userAgent.get()
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));
* this.userAgent.reset()
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));