-
Notifications
You must be signed in to change notification settings - Fork 33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not working after installation #5
Comments
I just tested and it works. If you just created the account you may need to wait a little. |
Ok i'll give it sometime |
@mrfoh Did you ever resolve this issue? I've set up the config with my OAuth credentials and set up the .p12 certificate path. However, when I try something such as:
I get "This webpage is not available" in Chrome, and "The connection was reset" in Firefox. However, I only get this when I'm working on localhost. I tried it fresh on my staging server and everything worked fine. I tried from scratch on localhost to make sure I hadn't made a mistake along the way but I still get the same issue. How can I get it to work on localhost? |
Never got around to figuring it out. Decided to use the google analytics site instead. Best regards
|
@Sachiano Just tested your code on localhost and it works. Did you modify the config and put your certificate here ? \app\config\packages\thujohn\analytics |
Yep, that's where I put the certificate. Here's my config file:
Obviously "xxx" is my actual client id/service email. I know the certificate is being picked up because if I change the name in the config file to a false file, the certificate not found exception is thrown. |
Maybe the problem comes from your key. Did you check it in the google console ? |
@thujohn Here's my API Credentials page I generated a Public API access key and put in local IPs... but I'm not using that key anywhere? |
Can you try to create a new key ? Type : Browser key |
It still hasn't worked. Is there anywhere I should be putting that API key? |
I'm sorry but I don't know... |
If you can send me your infos/certificate I will test on my local config |
Haha me either! I will send you the info, thanks. |
I'm Facing The Same Problem ...Can Any One Help Me |
me too facing same issure.plz anyone help to resolve this..im working in local. |
I have the same problem. Config file is correct but simple requests like: echo Analytics::getSiteIdByUrl('http://github.com/'); generate "This webpage is not available" error in Chrome browser. I'm working on localhost xampp + vhost. Any suggestions? EDIT:
When I check this solution (using CURL) on my example i will tell you does it works. |
Bump. I got exactly same issue as user one post before me. Edit: Do not do it locally :) I uploaded everything to dev server (accessible form the internet) and it works perfectly. |
I just install the package via composer, and config it with the correct parameters from the google api console.
Route::get('test', function() {
$accounts = Analytics::webproperties()->listManagementWebproperties("~all");
foreach ($accounts as $account){
var_dump($account);
}
});
Navigate to the route displays "This web page is not available" on chrome and "Server not found" on firefox. Am i doing something wrong
The text was updated successfully, but these errors were encountered: