Hi, after many times of trying I'm still not able to get the result.
Could you please tell me which step is incorrect.
1) I'm downloading client API files, putting them on my server's public_html folder
2) Then using composer installing dependencies from composer.json.(adding vendor folder)
3) Copied adsapi_php.ini to the public_html
4) Inside adsapi_php.ini inserted network code, application name, clientId, clientSecret, refreshtoken (that I got from ouath playground), server's settings in a Proxy block, log files links in the same directory and log level - notice.
5) Copied GetAllLineItems.php from examples to public_html.
6) Changed these lines of code inside GetAllLineItems.php.
namespace Google\AdsApi\Examples\Dfp\v201611\LineItemService;
require '../../../../vendor/autoload.php';
with
namespace Google\AdsApi;
require 'vendor/autoload.php';
7) Running GetAllLineItems.php in console line.
Then I get this error.

My network code is 22133002, Log files don't update, firewall does not block anything, I have tried on other servers as well, but results are the same. I don't have SSL certificate on my domain.
I think there is obviously something that I don't know or miss.
Thanks in advance.