Ebay - get Seller Feedbacks using REST api - ebay-api

How can i get seller feedbacks (reviews) using REST API on ebay?
I have only found this documentation "GetFeedback" to get them here https://developer.ebay.com/devzone/xml/docs/reference/ebay/GetFeedback.html

You need to sign up with a developer account first - there is a 24 hour security delay before these will work so that's your first action. Once that's done you need to go through setting up authentication, which is detailed here: https://developer.ebay.com/api-docs/static/authorization_guide_landing.html
NB, the eBay API documentation is long and rambling, and not well written. It is a headache but it does work I assure you!

Related

Limitation on requests for an Ad / Adset / Campaign history from Facebook Marketing API

I currently want to get the full history of an Ad account on the Facebook side. Having read the documentation:
https://developers.facebook.com/docs/marketing-api/reference/ad-activity
I expected to get all the events done in this account but found that I could only get one week of data. Something that is not indicated in the documentation.
Is this normal?
Please make sure to read the Graph API docs. In this case, pay attention to the time-based pagination part. You can specify the since parameter (which expects a Unix timestamp, more on it in the link above) to specify the start of the data you are requesting.

Get Microsoft Teams Shift per User - shiftrequests (deprecated) alternative

Good morning team,
We are trying to get all shift per-users on TEAMS SHIFT on API.
It seems we just can't get which API provides the information below.
When I do "Network" inspect online it seems the api calls this URL "https://api-nam1.staffhub.office.com/api/tenants/{tenant_id}/teams/{team_id}/shiftrequests" but this API standard is not documented on https://learn.microsoft.com/en-us/graph/api/team-get?view=graph-rest-1.0&tabs=http.
Do you guys have an idea? (Been stuck on this for days)
Also,
The API that I tried was this one https://learn.microsoft.com/en-us/graph/api/schedule-list-shifts?view=graph-rest-1.0&tabs=http but the data is old (From March 03/2020) is there a way i can specify date ?
To get team members' shared shift, you should use schedule-list-shifts
To get team members' all shifts, you should use shiftrequests
As shiftrequests is now deprecated, you have to use timeoffreasons instead.
You can find the docs here

Confused about the API changes

Since LinkedIn support has moved to StackOverflow... here we go. It might seem like a stupid question though...
The LinkedIn API will move to v2 in the near future, but I am unsure which data will really remain available (without being a LinkedIn Partner).
I have been reading the API v2 documentation. This talks about r_basicprofile (which I have used with v1), but this will be replaced with r_liteprofile. (I quote: "This API will only recognize a new “Lite Profile” permission, which supports a reduced set of member profile fields.")
So, r_liteprofile only has a couple of data fields (first name, last name, maiden name, profile picture). In the future, how am I to get the LinkedIn profile URL from this? And some other information that is not necessarily privacy sensitive?
If I try to get more data through r_liteprofile it doesn't show them, which would be expected behavior according to the r_liteprofile documentation. But how am I supposed to link to people's LinkedIn profile from my application? Doesn't LinkedIn want people to come back to their platform through other websites?
So, in conclusion:
After March 1st, will there still be a way to get the profile URL, and perhaps the headline and industry ID?
The obvious answer is "no you can't". I'm just hoping for a "yes you can".
In short: it's not possible to maintain the r_basicprofile fields without applying for a LinkedIn partnership, starting March 1st, 2019 (when the transition from the LinkedIn API v1 to v2 will be made).
From the migration docs:
"Looking to maintain access to the Basic Profile fields? Learn more about applying to a LinkedIn Partner Program."
https://learn.microsoft.com/en-us/linkedin/consumer/integrations/self-serve/migration-faq?context=linkedin/consumer/context#what-are-the-main-differences-with-the-new-sign-in-with-linkedin
You can get more fields by specifying them in url:
https://api.linkedin.com/v2/me?projection=(id,firstName,lastName,profilePicture(displayImage~:playableStreams))
You can find more fields here https://learn.microsoft.com/en-us/linkedin/shared/references/v2/profile

Bittrex Api: Conditional Fills, Fill-Or-Kill etc.

I need to adjust the bittrex api for a client:
the LIMIT_BUY or LIMIT_SELL (and CANCEL) orders work so far.
But he got a problem with Partial Fills. The api doc. on their website doesn't mention these options, which in the web interface exist.
So we were wondering if someone knows if these options ( as described here: https://support.bittrex.com/hc/en-us/articles/202227464-What-is-Time-in-Force- )
may be available for Orders via the bittrex api.
Thank you!
Yes, these orders are available. The partial fills you are experiencing can be the result of not enough liquidity in the best available bid / ask price. An immediate or cancel order will either fill the order or cancel it in the same request.
If you are still having trouble, there are alternatives to using the Bittrex API. You could try using the Shrimpy Developers API. They connect to exchanges and handle all the complexities so you don't need to. You can find information about their APIs here: https://developers.shrimpy.io/

Get A Users Over All Retweet and Mention Counts using Twitter API

We are working on some analytics using the amount a user is retweeted or mentioned... I can't seem to find a way to get these numbers using the apis does anyone have any ideas?
https://api.twitter.com/1/statuses/user_timeline.json?include_entities=true&include_rts=true&screen_name={screen_name}&count={count}
it's important to include the line include_entities=true to the request. This will give you an expanded response including re-tweet and mention counts.
Get Status / User Timeline
Twitter API Console
Update:
to get tweets from the last 90 days, there is a Node.js library you can use called Snapbird
https://github.com/remy/snapbird
.. and here is another resource covering the same topic.
http://blog.tweetsmarter.com/twitter-search/10-ways-and-20-features-for-searching-old-tweets/