cURL request
zoe-edwards opened this issue · 4 comments
zoe-edwards commented
I can’t find any docs about the cURL driver in the Request class? (Reminder to self to write some.)
zoe-edwards commented
Oh wait it’s a driver, but here’s the confusion:
http://fuelphp.com/dev-docs/classes/request/request.html
forge($uri = null, $route = true)
But it’s actually:
forge($uri = null, $options = true, $method = null)
And options includes the ability to use a driver, I asume that
Request::forge($url, 'curl', 'post');
Would create a POST cURL request?
WanWizard commented
That assumption is correct.
zoe-edwards commented
Great, can we leave this open, I might have some time to go through this and the other two soon.