Github API v3 giving 404 errors - github

Im using Joomla platform JGithub to communicate with Github API v3.
The code are all ok and i was able to use all GET methods (getComment etc).
But all POST, DELETE methods are failing with 404 error with a message Nothing Found.
Am just using username and password for authentication (No Oauth and stuff..)
Any idea why this error might be.
Another Joomla code was able to do this with the same script.
This is what confusing me.

Related

Getting authorization error while pushing selenium webdriver code to Bitbucket

While i'm trying to push my selenium code to bitbucket using "EGit - Git integration for Eclipse 5.4.0", getting the below authorization error,
Error Detail:
https://name#bitbucket.org/name/testing.git: not authorized
https://name#bitbucket.org/name/testing.git: not authorized
I have my company account and my account is registered with company email which is managed by Google , eventhough I have provided correct credentials I'm getting this authorization error . I have tried giving many different combinations but getting into the same error.
Can anyone please tell me what is wrong with it, Is there any settings i have missed out or any other things i need to do to overcome this error and push the code to Bitbucket.
Attached the image of the error for reference, if anyone can guide me on this,will be much grateful.
Thanks in advance!!

Google Sign in error 403 - Project marked for deletion

I've recently integrated play-silhouette 4.0.0 with Play 2.5 to handle authentication. I am allowing my users to login with Google and as such am using Silhouette's OAuth2 features. I am redirected to Google's authorization page properly but after pressing allow the app fails with
403 - Project marked for deletion
I have enabled the Google+ API in the developer's console and am requesting the scopes "profile email" from the service. I've also deployed the sample app and get the same error. The error codes listed by Google are not much help - anyone have an idea? I've been testing on my local machine.
I resolved this issue:
Create a new project in the Google Developer Console.
Enable Google+ API.
Create OAuth Credentials.
Perhaps I created the credentials before I enabled the API. Seems a bit silly order would matter. Hope this is helpful to someone else!

API requests doesn't work on my computer but the other

I have a very simple API created by using Laravel 5.2.22, when calling GET methods I am getting the error 404, calling DELETE method I am getting the error 405 (same thing using postman or curl). The point is that the same project works perfectly on another machine.
Is there anything that I have to configure in my Xampp to make this works?
Could anybody help?
Thank you
AS you said, the cause can be in wrong web server configuration. You should point your web server to a public directory of Laravel project. For example, if you've installed Laravel in C:/xampp/htdocs/ directory, you need to use these settings:
DocumentRoot "C:/xampp/htdocs/public"
<Directory "C:/xampp/htdocs/public">
After that restart web server. Also, make sure storage directory has right permissions.
Do this, if you'll get similar error message, please turn on Debug and post full error message.

Artifactory::Client Perl module authentication issues

I am trying to use the Artifactory::Client Perl module to deploy artifacts to my Artifactory server.
I am having difficulties trying to authenticate with Artifactory as the Artifactory::Client module doesn't seem to allow you to specify your Artifactory login credentials anywhere.
I get an HTTP 403 Forbidden error message when it makes the HTTP PUT request to try to deploy my artifacts.
I've tried opening up the Perl module and tried to follow the code through the various dependencies to where I think the actual request is being called from, but I can't seem to successfully authenticate with Artifactory.
If anyone has successfully authenticated using credentials, I'd be very grateful for any advice.
I was using the wrong Realm name – user2402135

Facebook connect 403 Access Denied

I am using the Facebook JavaScript SDK for a project I'm currently working on. It's been working fine before, but when I opened it today, the URL http://connect.facebook.net/en_US/all.js is not accessible. When I inspected the network using Firebug, I noticed that the server was returning 403 Access Denied.
Is there something I am getting wrong or is it Facebook server problem?
Finally figured out that Facebook's new HTTPS feature is interfering. Using https://connect.facebook.net/en_US/all.js solves the problem. Seems someone misconfigured their servers.