New app in Facebook, needs approval? [closed] - facebook

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I´m programming an app in Facebook. My code is ready but I don´t know if my app needs to be approved or something like that.

A Facebook application does normally not need to go through any approval process to go public, all you need to do is to switch Sandbox mode to disabled.
To find the Sandbox Mode setting:
Go yo your application dashboard.
Select the application you wish to publish.
Click edit app.
Go to Settings -> Advanced.
It should be here under the Authentication category.
The only times you need to go through a approval process are:
When you add an open graph activity which isn't standard.
When you apply for the advanced Marketing API.

About a year ago, there was an option to "send your application to the catalog" (or similiar), now I can't see it.
Just remember to disable sandbox mode and that should be all.

Related

Get users' application list in Facebook [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to develop a facebook app such that when the user install my app. I can
Get the user's application list
Find his friend who use the same apps as him(categorized by apps)
Track whether the user receives recommendation for the app
Track what information each app needs from users.
I have little experience in facebook app developing. I want to know is it technical possible to achieve the above four aims using facebook api?
Nope, the feature to retrieve the list of applications the User has authorized is not exposed to any of the present Facebook's APIs.

AppReview in my app [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Have i any possibilities handle user review?
For example:
- Can user writes review in some UITextField, and send it after writing?(Don't found something like this)
- Or maybe I can handle his review on AppStore(But i can't found userAppleId on apstore web page)
I think you're asking if you can provide an interface inside your app for a user to use to write an App Store review of your app.
The answer is no, you can't do that.
You can do nothing with the review after the user wrote one for your app. And you can not make a textfield to let the user ti review your app. What you can do is open a url which lead the user to your app's page, so the user can start to write a review by just clicking the Write Review button in AppStore. There is a lot of open source libs for to simplify your work to lead users to review, for example iRate and appirater.

force an iOS user to enter his own ID to use the device [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm trying to think of a way (if exists) that each user who uses the device will enter his ID so only authenticated users could use the device.
Why?
I have a few iOS devices in my department and I want to be able to monitor who was last to use the device, so if it was lost within the people in my department it will be easier to track it.
any ideas?
is there a way to write a proper app to do that?
thanks in advance!
No way to do that without jailbreaking and doing some really custom app development. The OS does not give you an option for intercepting user credentials.
You could write an application to simply authenticate a person against a web-service and store authentication information there. Then just make it a policy to always fire up that application and log in before using the device for anything else.
I have a couple of enterprise applications that do something similar. Each user logs in at the beginning of their shift and then logs out at the end.

Perl framework for html [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to authorise a team dedicatedly for password reset/printer queue delete kind of L1 tasks. I have planned to do so via 1 menu using Perl script. And I want it to be front end at HTML. I don't want user to login in server's black screen. They just login into web portal-> see the menu-> select an item-> do the task->exit.
Now, I am thinking what framework I can use to achieve this.
How user password would be transferred securely from web portal to my server?
How are you going to encrypt/secure the web communication?
How are you going to encrypt/secure passwords?
Even if you use one of the built-in methods for encrypting the passwords at authentication time, how will you secure passwords in user input for something like a password reset function?
I really need your valuable suggestions on this.
thanks,
Prashant
See this cool framework Mojolicious, it's really up to date, plus author update it frequently.
Official mojolicious site

How to create a test account for development purpose [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I want to create a test account for creating a application. How should I go about it? I referred to a tutorial and it seems like I will be needing an application id and a secret to create an account. I have read the doc page for Test users and could not make much sense. Would be a great help if someone could point me in the right direction
You need to create a facebook application first:
https://developers.facebook.com/docs/beta/opengraph/tutorial/
then add test users to the application:
https://developers.facebook.com/docs/test_users/
However I suspect this kind of "test user" isn't what you actually mean/need. You have to use your personal profile to set up the app and do the majority of your testing with - you aren't permitted to create more than one real profile. If you put your new app into sandbox mode then everything will be hidden anyway.
If you are new to facebook dev, maybe spend some time reading the documentation and looking through the examples first.
https://developers.facebook.com/