{"id":31544449,"url":"https://github.com/proxymanapp/proxyman-react-native-sample-app","last_synced_at":"2025-10-04T13:16:31.398Z","repository":{"id":316126907,"uuid":"1062078063","full_name":"ProxymanApp/Proxyman-React-Native-Sample-App","owner":"ProxymanApp","description":"A React Native iOS/Android app that demonstrate how to capture HTTPS from Proxyman","archived":false,"fork":false,"pushed_at":"2025-09-22T19:44:41.000Z","size":1907,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-09-22T21:25:12.114Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ProxymanApp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-22T19:22:23.000Z","updated_at":"2025-09-22T19:44:44.000Z","dependencies_parsed_at":"2025-09-22T21:25:14.758Z","dependency_job_id":null,"html_url":"https://github.com/ProxymanApp/Proxyman-React-Native-Sample-App","commit_stats":null,"previous_names":["proxymanapp/proxyman-react-native-sample-app"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/ProxymanApp/Proxyman-React-Native-Sample-App","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxymanApp%2FProxyman-React-Native-Sample-App","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxymanApp%2FProxyman-React-Native-Sample-App/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxymanApp%2FProxyman-React-Native-Sample-App/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxymanApp%2FProxyman-React-Native-Sample-App/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ProxymanApp","download_url":"https://codeload.github.com/ProxymanApp/Proxyman-React-Native-Sample-App/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ProxymanApp%2FProxyman-React-Native-Sample-App/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278317105,"owners_count":25967082,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-04T02:00:05.491Z","response_time":63,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-04T13:16:29.788Z","updated_at":"2025-10-04T13:16:31.393Z","avatar_url":"https://github.com/ProxymanApp.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Capturing HTTPS Traffic from React Native iOS and Android with Proxyman\n\nThis sample React Native app demonstrates how to capture HTTPS traffic on both iOS and Android devices using Proxyman.\n\n## Overview\n\nThis project shows practical examples of:\n- Making HTTPS requests from React Native\n- Configuring iOS/Android to work with Proxyman\n- Capturing and analyzing network traffic during development\n\n![Capture HTTPS traffic on iOS Simulator React Native with Proxyman](img/capture-ios.jpg)\n\n## Getting Started\n\n### Prerequisites\n- [Proxyman](https://proxyman.io/) installed on your Mac\n- React Native development environment set up\n- iOS Simulator or Android Emulator\n\n### Setting up Android Emulator\n\n1. Open Android Studio\n2. Go to **Tools** → **AVD Manager**\n3. Click **Create Virtual Device**\n4. Select **Phone** category and choose **Pixel 9**\n5. Click **Next**\n6. Select a system image with **Google APIs** (recommended: latest stable version)\n7. Click **Next**\n8. Name your AVD (e.g., \"Pixel_9_API_34\")\n9. Click **Finish**\n10. Start the emulator by clicking the **Play** button\n\n### Installation\n\n1. Install dependencies\n   ```bash\n   npm install\n   ```\n\n2. Run the app on your preferred platform:\n   ```bash\n   # For iOS\n   npm run ios\n   \n   # For Android\n   npm run android\n   ```\n\n## Proxyman Setup\n\n### For iOS Simulator\n1. Open Proxyman\n2. Go to **Certificate** → **Install Certificate on iOS -\u003e Simulator**\n3. Follow the setup wizard\n4. The app's HTTPS traffic will now be visible in Proxyman\n\n![Capture HTTPS traffic on iOS Simulator React Native with Proxyman](img/capture-ios.jpg)\n\n### For Android Emulator\nPlease refer Setting up Android Emulator section above to know how to create an Android Emulator with Google APIs.\n\nNote: Google Play Store version is not supported yet.\n\n1. Open Proxyman\n2. Go to **Certificate** → **Install Certificate on Android -\u003e Emulator**\n3. Follow the setup wizard\n4. Restart your Android Emulator\n5. The app's HTTPS traffic will now be visible in Proxyman\n\n![Capture HTTPS traffic on Android Emulator React Native with Proxyman](img/capture-android.jpg)\n\n### For Physical Devices\n1. Configure your device to use your Mac as HTTP proxy\n2. Install Proxyman's certificate on your device\n3. Trust the certificate in device settings\n\n## Sample Network Requests\n\nThe app includes examples of:\n- GET requests to public APIs\n- POST requests with JSON data\n- Requests with custom headers\n- Error handling scenarios\n\n## Blog Post\n\nThis code accompanies the Proxyman blog post: \"How to Capture HTTPS Traffic from React Native iOS and Android\"\n\n## Resources\n\n- [Proxyman Documentation](https://docs.proxyman.io/)\n- [React Native Network Guide](https://reactnative.dev/docs/network)\n- [Expo Development](https://docs.expo.dev/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproxymanapp%2Fproxyman-react-native-sample-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fproxymanapp%2Fproxyman-react-native-sample-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fproxymanapp%2Fproxyman-react-native-sample-app/lists"}