AppReview in my app [closed] - iphone

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.

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.

Searching For Users [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 11 years ago.
I'm currently investigating a way to develop a website that will allow me to search for users of facebook and the outcome is to display some simple information to the user of my website about this person. so firstly a search will will display a list of users and then when the user clicks the name the basic information will be displayed.
This is part of a University application i am looking into creating for a final year project. i'm not asking for answers i'm just wondering is it possible to even use the api to integrate with a aspx.net project and do the searches i have explained.
any pointers would help greatly. This is my first ever post on this form and i hope to be an active user of the site.
Thanks Everyone
Chris
Start here:
https://developers.facebook.com/docs/reference/api/
Look at the search section of this document.

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/

New app in Facebook, needs approval? [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 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.

Global facebook instance in iphone 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.
I would like to have my app log users into facebook in a settings view and then save the information into userdefaults. When the app loads, it should log into facebook if the information is in userdefaults, and if not, continue operating normally without facebook functionality. Basically, I want one instance of facebook which is loaded at the beginning, and all the information used throughout every view in the app.
Is this possible?
Everything that I have seen so far shows one instance per view which is not what I want.
We do it all the time in our apps.
I typically create a Facebook singleton to manage the Facebook interaction and store the token in either NSUserDefaults or the Keychain, depending on the application.