Removing applications from Google+ Manage Apps page - google-plus

I can't see any way to delete apps from the G+ Manage Apps page. I can disconnect there, or revoke access from the Google OAuth authorized apps page, but I can't see any option to remove it altogether.

Disconnecting using the Google+ Apps page will let you remove all the activities associated with the app, and will revoke access to your information to the app in question. It should also delete it from the list.
Update
For the record, this link currently redirects to https://myaccount.google.com/permissions which does the same thing.

Related

Making Google account selector screen mandatory

So I have implemented Google authentication by using AWS Amplify (federatedSignIn) in my React app. Apparently, I want to make the google account selector screen mandatory for the user to select an account to log in. Apparently, it works only when multiple google accounts are available to choose from, but if there is only one account, the system automatically uses it to login?
How can I enforce the selection screen with only one account?
That is google's functionality. You cannot change how google handles their login requests.
See more: https://developers.google.com/identity/toolkit/web/federated-login

How do remove a Instagram permission from my website?

Instagram reviewed my page and everything was fine. Now my page is live and a lot users told me that they don't like that when they connect with their Instagram that we want permission to follow/unfollow.
In easy words, I want that my Users don't have to give me permission for follow/unfollow. But I can't find a way to remove it on Instagrams Dev page.
From their page here:
That page has been updated. Here is archived version of original page where it says the following:
relationships - to follow and unfollow accounts on a user’s behalf
There is dedicated permission to just that - following/unfollowing accounts. Just remove request for that permission from your app at the time of authorization.

Regain access to an app created by a FB Page Account

Several month ago, before FB restricting the ability of a Page Account to create apps, I have created an application and linked to the page.
Now I cannot access anymore to the developers page with this account. I had to create a new app with my personal account, but I can't find a way to remove or unlink the old app from the page.
I cannot create a new page, as a result of nearly one year of activity on the current page, and trying to link the new app to the old page I get an undefined error.
We are in a sort of limbo...
Anyone has an idea on how to solve this situation?
I'm assuming you mean 'business account', not Page?
If so, and you're still able to log into the business account to manage your ads and pages, you can authorise your app by manually calling the Oauth dialog with the client-side Oauth flow, then use the access token (which will be for your business account, the admin of the app), to add your real user account as an additional admin
https://developers.facebook.com/docs/reference/api/application/#roles
You can define a role for a user by issuing an HTTP POST request to
APP_ID/roles with a user access token for an administrator of the app...
So a call to https://graph.facebook.com/<APP ID>/roles?user=<USER ID OF REAL ACCOUNT>&role= administrators&access_token=<ACCESS TOKEN>&message=POST will add another admin

Link app to dropbox

I have an app with a dropbox link capability. There is a button called link. Then a safari page is opened with dropbox, and you can link the app to your account. But since I want all the users to log in with my account, I didn't want to dysplay my email and passward on the app, but by preesing link, automatically the app is linked with my account, withought showing the passward, amd withought opening the dropbox link in safari. How can I do this?
Very bad idea. Users should use their own Dropbox account, otherwise you would possibly violate Dropbox's terms of service (you're not allowed to share your credentials) and, perhaps more importantly, any user would be able to delete or corrupt all other users' data.
The only way you could make your own Dropbox account accessible in the app, other than including your email address and password, would be to include an authorized OAuth token which could easily be extracted and abused by anyone who downloads your app.

Access ograph insights from another app without admin?

Been trying to get insights data from a page in another app (without admin), yet no luck.
Been using Facebook API to access 'insights' through Open Graph. I have two Facebook profiles:
one being the app holder
the other being some Facebook page not
related to the app.
I am able to get the data when the 'app holder' has admin rights on the 'Facebook page'.
I saw Odata app and tried that, yet I wanted to keep it within the Facebook app control.
I have also linked the application with the page, hoping that will work (yet no joy).
Am I missing some 'Facebook App setting' that I can use or is this not possible?
Any thoughts much appreciated.
Read the instructions on this page, it explains how to do it: obtaining a permanent facebook oauth access token