Click here to Skip to main content
15,904,416 members

a.ergin - Professional Profile



Summary

    Blog RSS
4
Debator
2
Enquirer
52
Organiser
398
Participant
0
Author
0
Authority
0
Editor
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Reputation

Weekly Data. Recent events may not appear immediately. For information on Reputation please see the FAQ.

Privileges

Members need to achieve at least one of the given member levels in the given reputation categories in order to perform a given action. For example, to store personal files in your account area you will need to achieve Platinum level in either the Author or Authority category. The "If Owner" column means that owners of an item automatically have the privilege. The member types column lists member types who gain the privilege regardless of their reputation level.

ActionAuthorAuthorityDebatorEditorEnquirerOrganiserParticipantIf OwnerMember Types
Have no restrictions on voting frequencysilversilversilversilver
Bypass spam checks when posting contentsilversilversilversilversilversilvergoldSubEditor, Mentor, Protector, Editor
Store personal files in your account areaplatinumplatinumSubEditor, Editor
Have live hyperlinks in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Have the ability to include a biography in your profilebronzebronzebronzebronzebronzebronzesilverSubEditor, Protector, Editor
Edit a Question in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Edit an Answer in Q&AsilversilversilversilverYesSubEditor, Protector, Editor
Delete a Question in Q&AYesSubEditor, Protector, Editor
Delete an Answer in Q&AYesSubEditor, Protector, Editor
Report an ArticlesilversilversilversilverSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending ArticlegoldgoldgoldgoldSubEditor, Mentor, Protector, Editor
Edit other members' articlesSubEditor, Protector, Editor
Create an article without requiring moderationplatinumSubEditor, Mentor, Protector, Editor
Approve/Disapprove a pending QuestionProtector
Approve/Disapprove a pending AnswerProtector
Report a forum messagesilversilverbronzeProtector, Editor
Approve/Disapprove a pending Forum MessageProtector
Have the ability to send direct emails to members in the forumsProtector
Create a new tagsilversilversilversilver
Modify a tagsilversilversilversilver

Actions with a green tick can be performed by this member.


 
Generaltriggering function from client side in node js Pin
a.ergin20-May-21 10:16
a.ergin20-May-21 10:16 
GeneralC++ get header content from http response Pin
a.ergin5-Mar-21 0:25
a.ergin5-Mar-21 0:25 
Hi Everybody,
I want to ask a question about c++ rest library. Here, I want to write a digest authentication with the c++ coding language. I am using Qt library. In order to make a digest authentication, I need to get the nonce token from the header. I am trying to read the response header with my code . The code below is working to get the response but "manager->head" command is not working. Could you help me, how can I read the header content, so I can get the nonce data.

QNetworkRequest request;
request.setUrl(QUrl("http://172.16.101.68/reset"));
QNetworkAccessManager* manager = new QNetworkAccessManager();
QNetworkReply*reply = manager->get(request1);
//QNetworkReply*reply = manager->head(request1); this not working
QEventLoop loop;
QObject::connect(reply, SIGNAL(finished()), &loop, SLOT(quit()));
loop.exec();

QByteArray data = reply->readAll();
QString dataReply(data);

Thanks,

modified 5-Mar-21 8:57am.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.