-
Notifications
You must be signed in to change notification settings - Fork 25.1k
Closed
Labels
Resolution: AnsweredWhen the issue is resolved with a simple answerWhen the issue is resolved with a simple answerType: Unsupported VersionIssues reported to a version of React Native that is no longer supportedIssues reported to a version of React Native that is no longer supported🌐NetworkingRelated to a networking API.Related to a networking API.
Description
Description
I need to call an api with https agent, but React native is not supporting https.
const cert = await RNFS.readFile(certificatePath, 'utf8');
const key = await RNFS.readFile(keyPath, 'utf8');
const httpsAgent = new https.Agent({ //[ReferenceError: Property 'https' doesn't exist]
cert: cert,
key: key,
});
const response = await axios({
method: 'PUT',
url: `URL here`,
data: data,
httpsAgent: httpsAgent,
headers: {
'Content-Type': 'application/json',
'Content-Encoding': 'utf-8',
},
});
Steps to reproduce
- Yarn android
React Native Version
0.71.8
Affected Platforms
Runtime - Android, Runtime - iOS
Output of npx react-native info
System:
OS: macOS 14.5
CPU: (11) arm64 Apple M3 Pro
Memory: 67.53 MB / 18.00 GB
Shell: 5.9 - /bin/zsh
Binaries:
Node: 21.6.2 - /opt/homebrew/bin/node
Yarn: 1.22.21 - /opt/homebrew/bin/yarn
npm: 10.2.4 - /opt/homebrew/bin/npm
Watchman: 2024.01.22.00 - /opt/homebrew/bin/watchman
Managers:
CocoaPods: 1.15.2 - /opt/homebrew/bin/pod
SDKs:
iOS SDK:
Platforms: DriverKit 23.4, iOS 17.4, macOS 14.4, tvOS 17.4, visionOS 1.1, watchOS 10.4
Android SDK: Not Found
IDEs:
Android Studio: 2023.2 AI-232.10227.8.2321.11479570
Xcode: 15.3/15E204a - /usr/bin/xcodebuild
Languages:
Java: 17.0.10 - /usr/bin/javac
npmPackages:
@react-native-community/cli: Not Found
react: 18.2.0 => 18.2.0
react-native: 0.71.8 => 0.71.8
react-native-macos: Not Found
npmGlobalPackages:
*react-native*: Not Found
Stacktrace or Logs
NA
Reproducer
NA
Screenshots and Videos
No response
Metadata
Metadata
Assignees
Labels
Resolution: AnsweredWhen the issue is resolved with a simple answerWhen the issue is resolved with a simple answerType: Unsupported VersionIssues reported to a version of React Native that is no longer supportedIssues reported to a version of React Native that is no longer supported🌐NetworkingRelated to a networking API.Related to a networking API.