NetworkEye
제품 정보
오픈소스 사용 사례
공개 채팅
지원 계획
현재 사용할 수 있는 OSS 플랜이 없습니다.
저장소의 제공자 또는 기여자인 경우 OSS 플랜 추가를 시작할 수 있습니다.
OSS 플랜 추가이 오픈소스에 대한 플랜을 찾고 있다면 저희에게 문의해 주세요.
전문 공급자와 연락하실 수 있도록 도와드리겠습니다.
제품 세부 정보
NetworkEye
NetworkEye,a iOS network debug library,monitor HTTP requests.
It can be detected HTTP request include web pages, NSURLConnection, NSURLSession, AFNetworking, 3rd libraries, 3rd SDK ,and so on. very convenient and practical.
It can be map local json file.
I created a google group,this group is for general discussion NetworkEye ,welcome to join,https://groups.google.com/d/forum/networkeye
if you use NetworkEye, you can add it in here,Who-Uses-NetworkEye
welcome to new pull request,that fix bug,add new features,add support other platform.and welcome to new issues.
and thanks to kasketis write the swift version netfox
Podfile
platform :ios, '7.0'
pod 'NetworkEye', '~> 1.1.2'
# pod 'NetworkEye/FMDB', '~> 1.1.2' # NetworkEye with FMDB ,save your requests to database
Instruction
Note:Use Network Eye in DEBUG mode
add the code in AppDelegate.m
#import "NEHTTPEye.h" #if defined(DEBUG)||defined(_DEBUG) [NEHTTPEye setEnabled:YES]; #endif
you can use use the shortcut (⌘ Command + n) , a double tap or shake device to call out the monitoring data interface
NEHTTPEyeViewController
You can also use the following code
#if defined(DEBUG)||defined(_DEBUG) NEHTTPEyeViewController *vc=[[NEHTTPEyeViewController alloc] init]; [self presentViewController:vc animated:YES completion:nil]; #endif
In NEHTTPEye, the default password of database is "networkeye" ,and you can save 300 requests.
the database name is networkeye.sqlite,and stored in the cache directory.
#define kSQLitePassword @"networkeye" #define kSaveRequestMaxCount 300
you can change it use NEHTTPModelManager
[NEHTTPModelManager defaultManager].saveRequestMaxCount=300; [NEHTTPModelManager defaultManager].sqlitePassword=@"networkeye";
NetworkEye use FMDB and SQLCipher。 FMDB is used to store data,SQLCipher is used to encrypt the database。
Monitoring data interface supports some search conditions ,it is URL,statusCode,HTTPMethod,MIMEType。
Preview
Licenses
Contributors
thanks!