Bagel is a little native iOS network sniffer. It's not a proxy debugger so you don't have to mess around with certificates, proxy settings etc. As long as your iOS devices and your Mac are in the same network, you can view the network traffic of your apps seperated by the devices.
Bagel iOS sniffes the NSURLSession
and NSURLConnection
delegate classes and broadcast requests to the Bagel macOS by using Bounjour protocol.
If you are here for the macOS client, you can clone the repo and archive macOS project.
To connect your app you need to install Bagel iOS in your app projects and download macOS client to view network traffic.
pod 'Bagel'
Just download or clone the repo and move Bagel.framework
into your project.
Most basic usage is to start Bagel iOS before any operation that sends requests.
//import Bagel
Bagel.start()
By default, Bagel gets your project name and device information. Desktop client uses these informations to seperate projects and devices. You can configure these if you wish:
let bagelConfig = BagelConfiguration()
bagelConfig.project.projectName = "Custom Project Name"
bagelConfig.device.deviceName = "Custom Device Name"
bagelConfig.device.deviceDescription = "Custom Device Description"
Bagel.start(configuration: bagelConfig)
Bagel framework communicates with the desktop client by using Bounjour protocol. You can also configure these Netservice parameters. Default values are:
let bagelConfig = BagelConfiguration()
bagelConfig.netservicePort = 43434
bagelConfig.netserviceDomain = "_Bagel._tcp"
bagelConfig.netserviceType = ""
bagelConfig.netserviceName = ""
Bagel.start(configuration: bagelConfig)
If you change Netservice parameters in your app, you should also change them on desktop client.
Apache