Deleting apps from iTunes connect [closed] - app-store-connect

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 2 years ago.
Improve this question
I'm having this problem in iTunes Connect where I want to delete an old app project I did, but when I click "app information", there is no "Delete App" option. Any help?

Deleting an App
If you’ve created an app in iTunes Connect that you no longer need to
manage, you can delete it from iTunes Connect.
Apps can’t be deleted if they are part of a Game Center group, in an
app bundle, or currently displayed on a store. You’ll want to remove
the app from sale or from the group if you want to delete it. See
Removing an App from Sale or Removing an App from a Group in Game
Center Configuration Guide for iTunes Connect. Apps that have not been
approved yet can’t be deleted; instead, reject the app. See Removing a
Build from Review.
Following is Screen shot of delete application.
More detail follow below apple official document.

Related

Evernote API Change Alert Notification [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
When there is a new release with a version change, or any release that may cause deprecation, how are developers notified? is there an email list that we can sign up for?
I have been documenting this for almost 200 api's, some use twitter, some send alert emails, some rely on statuspage, admins who have created apps, and even some have no system at all. I am trying to find out how developers are notified when a new release to the evernote api is imminent.
That hasn't really happened, deprecated APIs have been kept around so far and not actually removed. We do make changes in sdks though and remove deprecated methods in newer versions, as well as add new methods.

Is there a Web API for WeChat? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
From what's evident on the WeChat Developer Site, there is a WeChat API for integrating "WeChat SDK with your iOS and Android apps".
Specifically, I am looking for a way to check to see whether two accounts are friends on WeChat (I have access to the login information for one of those, the other of which varies). Is there a Web API for me to do this with? I was thinking something along the lines of REST, JSON, etc., though I can't seem to find anything of this sort.
Perhaps you are looking for the Official Account Admin Platform. I'm not sure about the whole friendship status thing, but that's the closest thing I can find to a WeChat REST API.
I made a code snippet for a python API to read WeChat messages (in a django app)
It also explains how to make a developer account etc
code: https://github.com/tawanda/django-wechat
Summary
Create developer account
head over to http://admin.wechat.com/debug/sandbox
Click on Login
Scan the QR code
You should see the sandbox developer page now

App to App Authentication [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
So my scenario is I need to get a feed from a company page to cache and process for a internal website that will display the posts. The problem is this is not a "User" it is an application and I don't want to associate this with my profile.
Facebook and Twitter OAuth2 process can be done completely programatically since it is an application authorization. However I can not see how to do this with LinkedIn, since it requires a user account, and the user to enter a password and accept the access requirements.
Any ideas on how to do this 100% programatically?
If this isn't possible is there any read only API's that are not protected via user credentials?
I think you are looking for :
https://github.com/emorikawa/linkedin-oauth2
Apparently not only is App to App API access not available, LinkedIn will be heavily restricting their public API moving forward start May 12th, 2015.
Source: https://developer.linkedin.com/blog/posts/2015/developer-program-changes

How to get currently playing track in Spotify Mac from Cocoa [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 4 years ago.
Improve this question
I'm developing a lyric application for Mac and I want to add Spotify support to my app. I just need to retrieve currently playing track on spotify client for Mac and get notified if playing state has changed.
is there any API to use in my app for doing this?
To get notified when playing state has changed (which tells you the new track), you watch for a distributed notification called "com.spotify.client.PlaybackStateChanged". There are at least two other questions here asking how to do that, one of which has sample code, so try searching for that. (Or just fire up Notification Watcher and you can see them for yourself, and it should be easy to figure out how to write the code to handle them.)
If you want to check the current track manually (e.g., at startup), you can use the Spotify AppleScript interface (which of course you can also access via ScriptingBridge, appscript, etc.), like this:
tell application "Spotify"
name of current track
end tell
There are similar properties for the artist, etc. Fire up AppleScript Editor and open the Spotify Dictionary for full details.

Is there an API to connect to iCloud and get contacts and contact changes? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I'm wondering if there is an API of some sort available from Apple for iCloud, to which one can hook into and get notified when contact information changes.
The point of this is that I'm wondering whether it is possible to sync contacts from iCloud outside of iCloud (e.g. from iCloud to some sync server and then to other devices).
Thanks!
Here's an implementation of what you are looking for.
Although there is a bug within it, when you have more than 500 contacts, it doesn't work.
I think there is a problem with pagination. If you find out what's wrong with it, do tell.
https://github.com/mindcollapse/iCloud-API