You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you have a need for an additional http client you can request one by opening an issue or by submitting a PR.
84
+
85
+
If you wish to build one yourself make sure your http client implements ```ParseHttpable``` for it be compatible with the SDK. Once you have a working http client that enhances the SDK feel free to submit it in a PR so we can look into adding it in.
86
+
87
+
88
+
Alternate Certificate Authority File
89
+
------------------------------------
90
+
91
+
It is possible that your local setup may not be able to verify with peers over SSL/TLS. This may especially be the case if you do not have control over your local installation, such as for shared hosting.
92
+
93
+
If this is the case you may need to specify a Certificate Authority bundle. You can download such a bundle from (http://curl.haxx.se/ca/cacert.pem)[http://curl.haxx.se/ca/cacert.pem] to use for this purpose. This one happens to be a Mozilla CA certificate store, you don't necessarily have to use this one but it's recommended.
94
+
95
+
Once you have your bundle you can set it as follows:
96
+
```php
97
+
// ** Use an Absolute path for your file! **
98
+
// holds one or more certificates to verify the peer with
0 commit comments