Automatically get the developer contact details from search API - objective-c

Is it possible to automatically get the contact details (say an email) from the developers data that is returned by the Apple API
http://www.apple.com/itunes/affiliates/resources/documentation/itunes-store-web-service-search-api.html
in obj-c ?

That information is not available from the API.
What you can get using the search or lookup is the seller URL.
The Enterprise Partner Feed does include support URL information if you wanted to try and use that.

Related

Google People API: Get contact by a specific group

I am migrating our code from Google Contacts API to Google People API as Google Contacts API will be deprecated soon, but I noticed new People APIs are simple to compare with the old Contacts API.
How I can find a contact for a specific group?
f.e. getContactByGroupId
Answer:
Assuming that you meant getContactGroupById instead of getContactByGroupId, you can retrieve a specific contact group in People API by calling:
contactGroups.get
Further info:
In this case, you have to provide the resourceName instead of the contact id. If you don't know how to get the former, consider taking a look at this answer.
If you are using Apps Script, you can enable the Advanced People Service and do something like this:
People.ContactGroups.get(resourceName);

IBM API Connect not showing API that I just created

I just created an API on APIC, but when I search APIs it doesn't show up in the search. Any idea why or where I can find the API I just created?
Try searching for the product. Then you can search through the product's API's and it should be there.

How to get description for Google API nearbysearch items

I am developing a web app for client requirement in that i am using Google API for finding nearby place
https://maps.googleapis.com/maps/api/place/nearbysearch/json?location=.....
I was able to get all the required details. Name, rating, etc but only description is missing. will i be able to get it from anywhere, i tried
https://maps.googleapis.com/maps/api/place/textsearch/json?query=...
but not getting required result only country or place is getting here not restaurant or venue description. Please help me to get details for each item in nearby search result. Or any other suggestions
Based on the documentation of both Google Places API Nearby Search Requests and Google Places API Text Search Requests, description property is not included in the returned results. You could rather file for a Feature Request to include description to each returned places in the results here at Google Public Issue Tracker.
Issue Tracker is a tool used internally at Google to track bugs and
feature requests during product development. It is available outside
of Google for use by external public and partner users who need to
collaborate with Google teams on specific projects.
You can learn more about Issue Tracker through this link.
I would also like to suggest to read Google Places API Place Details. It returns more comprehensive information about the indicated place such as its complete address, phone number, user rating and reviews.
Hope this help!

Any way to get a Restaurant menu from Yelp! API

Trying to extract some menu data from a restaurant on Yelp using the v2.0 API. The only thing i am getting via the API response is a menu_provider field which i don't know how to use - any ideas?
My understanding is that Yelp gets their menu information from Locu (and potentially other sources), so they won't share that via their API.
Per their documentation, they provide menu_provider and menu_date_updated, but not actual menu data in their API.
Documentation: http://www.yelp.com/developers/documentation/v2/business
TechCrunch article on partnership: http://techcrunch.com/2013/04/23/yelp-partners-with-locu-allowing-businesses-to-post-menus-daily-specials-photos-to-yelp-in-real-time/

How to add custom field in salesforce leads through rest api?

Hi
I am currently working on an application which is implementing salesforce.com REST api. I have done all the authentication part and received all the info needed. Now I want my application to push the leads into the customer's account. But the lead fields can be customized and different customer use their different custom fields, so any1 can suggest me how to add that custom field in my form which will be pushed to the customer's salesforce account.
Thanks
You can use the describe resource in the REST API to obtain the metadata about the Load object, including all the fields.
https://{someinstance}.salesforce.com/services/data/v20.0/sobjects/lead/describe
You can use the list of fields to drive your form, and to control what you subsequently POST to /services/data/v20.0/sobjects/lead to create the new lead.
Here's the link to the REST API pilot docs incase you haven't seen them
No idea if the REST API supports describe() calls, they're a way of querying for all metadata about table (columns, their types etc). In normal webservice API this info can be found at http://www.salesforce.com/us/developer/docs/api/index_Left.htm#StartTopic=Content/sforce_api_calls_describesobject.htm#topic-title
the Metadata REST API was put on hold by Salesforce, so there is no REST API for Metadata (there is some limited support in the Tooling REST API, but not enough to create an object).
https://salesforce.stackexchange.com/questions/20763/creating-a-custom-object-using-rest-api